Übergabe des Templates an den ReportGenerator nicht über $form, sondern über ReportGe...
[kivitendo-erp.git] / templates / webpages / ct / get_delivery_de.html
1 [% 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           
19           <td>[% row.shiptoname UNLESS loop.prev.shiptoname == row.shiptoname %]&nbsp;</td>
20           <td>[% row.invnumber   %]&nbsp;</td>
21           <td>[% row.ordnumber   %]&nbsp;</td>
22           <td>[% row.transdate   %]&nbsp;</td>
23           <td>[% row.description %]&nbsp;</td>
24           <td>[% row.qty         %]&nbsp;</td>
25           <td>[% row.unit        %]&nbsp;</td>
26           <td>[% LxERP.format_amount(row.sellprice, 2) %]&nbsp;</td>
27         </tr>
28 [%- END %]
29
30      </table>