This message was deleted.
# advancedpdf
s
This message was deleted.
d
so you can nest them together with a check like:
<#if tranline.line == item.orderline>
however to accommodate packing slips from Item Fulfillments created from Transfer Orders, you have to alter the "Sales Order" (Transfer Order) line number:
🙏 1
Thanks David, so you use this with <#list salesorder.item as tranline> ?
Yes, so without accounting for Transfer Orders (see above), the pattern would be:
Copy code
<#list record.item as item>
	<#list salesorder.item as tranline>
		<#if tranline.line == item.orderline>
			<!-- here the SO line and IF line match -->
🙏 1