1 [% USE HTML %][% USE LxERP %]
6 <tr class="listheading">
7 <th class="listheading"><translate>Shipping Address</translate></th>
8 <th class="listheading"><translate>Invoice</translate></th>
9 <th class="listheading"><translate>Order</translate></th>
10 <th class="listheading"><translate>Invdate</translate></th>
11 <th class="listheading"><translate>Description</translate></th>
12 <th class="listheading"><translate>Qty</translate></th>
13 <th class="listheading"><translate>Unit</translate></th>
14 <th class="listheading"><translate>Sell Price</translate></th>
16 [%- FOREACH row = DELIVERY %]
17 <tr class="listrow[% loop.count % 2 %]">
18 <td>[% HTML.escape(row.shiptoname) UNLESS loop.prev.shiptoname == row.shiptoname %] </td>
19 <td>[% HTML.escape(row.invnumber) %] </td>
20 <td>[% HTML.escape(row.ordnumber) %] </td>
21 <td>[% HTML.escape(row.transdate) %] </td>
22 <td>[% HTML.escape(row.description) %] </td>
23 <td>[% HTML.escape(row.qty) %] </td>
24 <td>[% HTML.escape(row.unit) %] </td>
25 <td>[% LxERP.format_amount(row.sellprice, 2) %] </td>