Berenice DomĂnguez
10/06/2022, 8:56 PMDavid B
10/06/2022, 10:18 PMDavid B
10/06/2022, 10:26 PM#list
):
<#if record.shippingcost gt 0>
<tr>
<td>Shipping</td>
<td>${record.shippingcost}</td>
</tr>
</#if>
<#if record.handlingcost gt 0>
<tr>
<td>Handling</td>
<td>${record.handlingcost}</td>
</tr>
</#if>
David B
10/06/2022, 10:27 PM<#if record.shippingcost gt 0 || record.handlingcost gt 0>
<tr>
<td>Shipping & Handling</td>
<td>${record.shippingcost + record.handlingcost}</td>
</tr>
</#if>
(you don't actually have to use #assign
, you can just add the two values ad-hoc)Berenice DomĂnguez
10/07/2022, 2:05 PMBerenice DomĂnguez
10/07/2022, 2:24 PMscottvonduhn
10/07/2022, 3:10 PMBerenice DomĂnguez
10/07/2022, 4:56 PMBerenice DomĂnguez
10/07/2022, 4:56 PMscottvonduhn
10/07/2022, 6:17 PMscottvonduhn
10/07/2022, 6:19 PMBerenice DomĂnguez
10/07/2022, 8:20 PMBerenice DomĂnguez
10/07/2022, 8:20 PM