I need to replicate the ENTIRE Item Fulfillment Packing Slip appended at the bottom of the Purchase Order, when the createdfrom.type = Drop Ship.
We should be able to source all the customer related stuff from the createdfrom
join. The items only need to be the items that are on the Purchase Order - so Same Item List as the PO itself, just replicated again in the Packing Slip format. not the Items from the sales order.We don't need the Packing slip number either, can just use the PO number.
However I tried to get some info like billAddress : record.createdfrom.billaddress
But my major question is how can i get the Quantity ordered and Quantity Shipped and On Backorder on purchase order which was on item fulfillment
I need to replicate the ENTIRE Item Fulfillment Packing Slip appended at the bottom of the Purchase Order, when the createdfrom.type = Drop Ship.
We should be able to source all the customer related stuff from the createdfrom
join. The items only need to be the items that are on the Purchase Order - so Same Item List as the PO itself, just replicated again in the Packing Slip format. not the Items from the sales order.We don't need the Packing slip number either, can just use the PO number.
However I tried to get some info like billAddress : record.createdfrom.billaddress
But my major question is how can i get the Quantity ordered and Quantity Shipped and On Backorder on purchase order which was on item fulfillment
1 Answer
Reset to default 1A possible approach is to create a user event (beforeLoad) that runs in the print context. Then, you can add the necessary data from the created from record using the methods Form.addField(...) or Form.addSublist(...).