Our packing slips list the components of an item g...
# general
m
Our packing slips list the components of an item group, and gives a quantity to each line, which can be confusing for the people packing. Is there any way of removing that line level detail, and just showing the item group name?
n
On the Item Group's record, BOM (Members) tab, untick
DISPLAY COMPONENTS ON TRANSACTIONS.
m
box is unticked but still shows on the packing slip
n
Then next I would edit the Advanced PDF in the similar but opposite way that SA 80948 describes https://netsuite.custhelp.com/app/answers/detail/a_id/80948
m
Hmm. Tried setting that up, but i’m getting errors, think my HTML isn’t up to scratch
<#list salesorder.item as tranline><tr> <if tranline.custcol_itemtype = ‘Kit/Package’> <td colspan=“12”><span class=“itemname”>${salesorder.item[0].item@label}</span><br />${tranline.description}</td> <elseif tranline.custcol_itemtype !=‘Kit/Package’> <td colspan=“12”><span class=“itemname”>${tranline.item}</span><br />${tranline.description}</td> </elseif> </if> <td colspan=“12”><span class=“itemname”>${tranline.item}</span><br />${tranline.description}</td> <td colspan=“3”>${tranline.options}</td> <td align=“right” colspan=“4”>${tranline.quantityordered}</td> <td align=“right” colspan=“4”>${tranline.quantityremaining}</td> <td align=“right” colspan=“4”>${tranline.quantity}</td> </tr> </#list></table>