suitemike
06/28/2019, 3:53 PMBlake Enloe
06/28/2019, 3:56 PM<#if record.item?has_content>
<table style="width: 100%; margin-top: 15px;">
<!-- start items --><#list record.item as item><#if item_index==0>
<thead>
<tr>
<th class="itemlist" align="center" style="width: 10%">Quantity</th>
<th class="itemlist" style="width: 60%">${item.item@label}</th>
<th class="itemlist" align="right" style="width: 10%">${item.rate@label}</th>
<th class="itemlist" align="right" style="width: 10%">Tariff Fee</th>
<th class="itemlist" align="right" style="width: 10%">${item.amount@label}</th>
</tr>
</thead>
</#if>
<tr>
<td class="itemlist" align="center" line-height="150%" style="width: 10%">${item.quantity}</td>
<td class="itemlist" style="width: 60%"><span style="font-weight: bold; line-height: 150%; color: #333333;">${item.item}</span><br />
${item.description}</td>
<td class="itemlist" align="right" style="width: 10%">${item.rate}</td>
<td class="itemlist" align="right" style="width: 10%">${item.custcol_tariff_fee}</td>
<td class="itemlist" align="right" style="width: 10%">${item.amount}</td>
</tr>
</#list><!-- end items -->
</table>
<hr style="width: 100%; color: #d3d3d3; background-color: #d3d3d3; height: 1px;" />
</#if>
Blake Enloe
06/28/2019, 3:57 PM<td class="itemlist" align="right" style="width: 10%">${item.rate}</td>
<td class="itemlist" align="right" style="width: 10%">${item.amount}</td>
suitemike
06/28/2019, 4:09 PM