2 [% USE HTML %][% USE LxERP %]
 
   8         <tr class="listheading">
 
   9           <th class="listheading">[% 'Shipping Address' | $T8 %]</th>
 
  10           <th class="listheading">[% 'Invoice' | $T8 %]</th>
 
  11           <th class="listheading">[% 'Order' | $T8 %]</th>
 
  12           <th class="listheading">[% 'Invdate' | $T8 %]</th>
 
  13           <th class="listheading">[% 'Description' | $T8 %]</th>
 
  14           <th class="listheading">[% 'Qty' | $T8 %]</th>
 
  15           <th class="listheading">[% 'Unit' | $T8 %]</th>
 
  17           <th class="listheading">[% 'Sell Price' | $T8 %]</th>
 
  19           <th class="listheading">[% 'Last Cost' | $T8 %]</th>
 
  22 [%- FOREACH row = DELIVERY %]
 
  24     row.script = is_customer ?  ( row.invoice ? 'is' : 'ar' )
 
  25                              :  ( row.invoice ? 'ir' : 'ap' )
 
  27         <tr class="listrow[% loop.count % 2 %]">
 
  28           <td>[% HTML.escape(row.shiptoname) UNLESS loop.prev.shiptoname == row.shiptoname %] </td>
 
  29           <td>[% IF row.id %]<a href='[% row.script %].pl?action=edit&id=[% HTML.escape(row.id) %]'>[% END %][% HTML.escape(row.invnumber)   || ' ' %][% IF row.id %]</a>[% END %]</td>
 
  30           <td>[% IF row.oe_id %]<a href='oe.pl?action=edit&type=[% IF is_customer %]sales_order[% ELSE %]purchase_order[% END %]&vc=customer&id=[% HTML.escape(row.oe_id) %]'>[% END %][% HTML.escape(row.ordnumber)   || ' ' %][% IF row.oe_id %]</a>[% END %]</td>
 
  31           <td>[% HTML.escape(row.transdate)   || ' ' %]</td>
 
  32           <td>[% HTML.escape(row.description) || ' ' %]</td>
 
  33           <td>[% HTML.escape(row.qty)         || ' ' %]</td>
 
  34           <td>[% HTML.escape(row.unit)        || ' ' %]</td>
 
  35           <td>[% LxERP.format_amount(row.sellprice, 2) || ' ' %]</td>
 
  40 [%- IF DELIVERY.size == 15 %]
 
  41      <p>[% 'This list is capped at 15 items to keep it fast. If you need a full list, please use reports.' | $T8 %]</p>