Pete Kastner
07/06/2023, 12:07 PM<table border="1" style="border-collapse: collapse">
<thead>
<tr>
<th>Item</th>
<th>Description</th>
<th>Qty</th>
<th>Backordered</th>
<th>Rate</th>
<th>Amount</th>
</tr>
</thead>
<tbody><#list transaction.item as item><#if item.item!="" && item.price!="">
<tr>
<td>${item.custcol_cust_spec_part_so_col}</td>
<td>${item.custcol_cust_spec_part_desc_so_col}</td>
<td style="text-align: center;">${item.quantity}</td>
<td style="text-align: center;">${item.quantitybackordered}</td>
<td style="text-align: center;">${item.rate?string.currency}</td>
<td style="text-align: center;">${item.amount?string.currency}</td>
</tr>
</#if></#list>
</tbody>
</table>