I'm working on a customized Picking Ticket using a...
# advancedpdf
j
I'm working on a customized Picking Ticket using an advanced PDF/HTML template. I'm trying to print / reference "Purchase Description" and source it off of the item master while looping through the items on the pick ticket. I have 3 line items... When I reference using dot notation... <#list record.item as item> ${item.item} <!-- GOOD on all 3 lines --> ${item.description} <!-- GOOD on all 3 lines --> ${item.item.purchasedescription} <!-- GOOD on 1st line, ** Line 2 & 3 FAIL. Purchase description from line 1 copied down -> --- Any thoughts?
a
This is an old bug, been there forever, you will need a custom line field to source the value from the Item record and use that custom field. • This ${item.item} is available at the transaction level in the item sublist. • This ${item.description} is available at the transaction level in the item sublist. • This ${item.item.purchasedescription} is not available at the transaction level and is trying to get the value from the Item record and that does not work for Advanced PDF templates, it would repeat the first line value across the board.
netsuite 1
👍 1