1d71757d82340bd3630a9a514913b6addeb95fca
[kivitendo-erp.git] / templates / webpages / ct / get_delivery_de.html
1 [% USE HTML %][% USE LxERP %]
2 <table width="100%">
3   <tr>
4     <td>
5       <table width="100%">
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>
15         </tr>
16 [%- FOREACH row = DELIVERY %]
17         <tr class="listrow[% loop.count % 2 %]">
18           <td>[% HTML.escape(row.shiptoname) UNLESS loop.prev.shiptoname == row.shiptoname %]&nbsp;</td>
19           <td>[% IF row.id %]<a href='is.pl?action=edit&id=[% HTML.escape(row.id) %]'>[% END %][% HTML.escape(row.invnumber)   || '&nbsp;' %][% 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)   || '&nbsp;' %][% IF row.oe_id %]</a>[% END %]</td>
21           <td>[% HTML.escape(row.transdate)   || '&nbsp;' %]</td>
22           <td>[% HTML.escape(row.description) || '&nbsp;' %]</td>
23           <td>[% HTML.escape(row.qty)         || '&nbsp;' %]</td>
24           <td>[% HTML.escape(row.unit)        || '&nbsp;' %]</td>
25           <td>[% LxERP.format_amount(row.sellprice, 2) || '&nbsp;' %]</td>
26         </tr>
27 [%- END %]
28
29      </table>
30 [%- IF DELIVERY.size == 15 %]
31      <p>Diese Liste ist auf 15 Zeilen begrenzt. Wenn Sie eine vollständige Liste benötigen, erstellen Sie bitte einen Bericht.</p>
32 [%- END %]