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 show Shipping Cost on SO PDF?
Have the following in the SO PDF code:
<#if record.altshippingcost?has_content>
<tr>
<td colspan="4"> </td>
<td align="right" style="font-weight: bold; color: #333333;">${record.altshippingcost@label}</td>
<td align="right">${record.altshippingcost}</td>
</tr>
</#if>
<tr>
<td colspan="4"> </td>
<td align="right" style="font-weight: bold; color: #333333;">${record.taxtotal@label}</td>
<td align="right">${record.taxtotal}</td>
</tr>
The altshippingcost field has a value:
The Sales order print does not populate this value:
Should print shipping cost before the tax total.