Is anyone familiar with Assembly/Bill of Materials...
# advancedpdf
n
Is anyone familiar with Assembly/Bill of Materials Items option to
DISPLAY 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.
Both the Standard and Custom Templates use the Same Item loop.
Copy code
<#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>