<#if record.item?has_content>
<table class="itemtable" style="width: 100%; margin-top: 10px;"><!-- start items --><#list record.item as item>
<#assign remainQty = item.quantity - item.quantitypicked>
<#if remainQty == 0>
<#continue> </#if><#list>
<thead>
<tr>
<th style="width: 34px; white-space: nowrap;">Line</th>
<th style="white-space: nowrap; width: 52px;">Bin</th>
<th colspan="4" style="width: 259px;">Product/Description</th>
<th style="white-space: nowrap; width: 48px;">Unit</th>
<th style="white-space: nowrap; width: 52px;"> Order</th>
<th style="white-space: nowrap; width: 53px;">B/O </th>
<th style="white-space: nowrap; height: 11px; width: 41px;">Pick </th>
<th style="width: 52px;">W/H</th>
<th style="width: 54px;">Picked</th>
</tr>
</thead>
</#if><tr>
<td style="width: 34px; white-space: nowrap;">${item.line}</td>
<td style="white-space: nowrap; width: 52px;"><b><i>${item.inventorydetail}</i></b></td>
<td colspan="4" style="width: 259px;"><strong>${item.item}</strong><br />${item.description}</td>
<td style="white-space: nowrap; width: 48px;">${item.units}</td>
<td style="white-space: nowrap; width: 52px;">${item.quantity}</td>
<td style="width: 53px;">${item.quantityBackordered}</td>
<td style="width: 41px;">${quantitycommitted}-{quantitypicked}</td>
<td style="width: 52px;">${item.location}</td>
<td style="white-space: nowrap; width: 54px;">________</td>
</tr>
</#list><!-- end items --></table>