Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
How to display Transfer Price/Item Rate in Packing Slip advanced pdf template
We would like to show Transfer Price / Rate in packing slip advanced pdf.
I am using the following code:
<#if salesorder.item?has_content>
<table class="itemtable" style="width: 100%; margin-top: 10px;">
<thead>
<tr>
<th colspan="12">${salesorder.item[0].item@label}</th>
<th align="right" colspan="4">Unit Price</th>
<th align="right" colspan="4">Quantity</th>
<th align="right" colspan="4">U/M</th>
<th align="right" colspan="4">Amount</th>
</tr>
</thead>
<#list salesorder.item as tranline><tr>
<td colspan="12"><span class="itemname">${tranline.item}</span><br />${tranline.description}</td>
<td align="right" colspan="4">${tranline.rate}</td>
<td align="right" colspan="4">${tranline.quantityordered}</td>