Discussions
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.