1 [% USE HTML %][% USE LxERP %]
6 <tr class="listheading">
7 <th class="listheading">Lieferadresse</th>
8 <th class="listheading">Rechnung</th>
9 <th class="listheading">Auftrag</th>
10 <th class="listheading">Rechnungsdatum</th>
11 <th class="listheading">Beschreibung</th>
12 <th class="listheading">Menge</th>
13 <th class="listheading">Einheit</th>
14 <th class="listheading">Verkaufspreis</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>[% IF row.id %]<a href='is.pl?action=edit&id=[% HTML.escape(row.id) %]'>[% END %][% HTML.escape(row.invnumber) || ' ' %][% IF row.id %]</a>[% END %]</td>
20 <td>[% IF row.oe_id %]<a href='oe.pl?action=edit&type=sales_order&vc=customer&id=[% HTML.escape(row.oe_id) %]'>[% END %][% HTML.escape(row.ordnumber) || ' ' %][% IF row.oe_id %]</a>[% END %]</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>