Does anyone know of a ordered quantity field (or s...
# suitescript
c
Does anyone know of a ordered quantity field (or similar) that a packing slip PDF can access? quantity gets the shipped qty, I need to know the ordered qty too. Iterating through the so lines works but matching an SO line with an IF line is a challenge. One option could be to iterate through the SO lines and not the IF lines in the PDF template, there could be multiple IFs on an SO though. I suppose the IF ID could be used as a filter.
a
Is not that complex, Sales Order {line} = Item Fulfillment {orderline} (Always) as far as I know. <#list record.item as tranline> <#list salesorder.item as soLine> <#if soLine.line?string == tranline.orderline?string> Your lines here!!!