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!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
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>