nathanw
05/16/2022, 10:53 PMDISPLAY COMPONENTS ON TRANSACTIONS
?
I've enabled the setting and added the Item to a Sales Order.
When I print using the NetSuite Standard PDF/HTML Template, the Component Items are printed.
But when I print using a Custom PDF/HTML Advanced PDF/HTML Template I cannot seem to get the Component Items to Print.nathanw
05/16/2022, 10:56 PM<#list record.item as item>
<#if item_index==0>
<thead>
<tr>
<th>${item.quantity@label}</th>
<th>${item.item@label}</th>
</tr>
</thead>
</#if>
<tr>
<td>${item.quantity}</td>
<td>${item.item}</td>
</tr>
</#list>