Merge branch 'master' of vc.linet-services.de:public/lx-office-erp
[kivitendo-erp.git] / templates / webpages / cp / invoices.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE L %]
4 [%- USE LxERP %]
5 <table width=100%>
6   <tr>
7     <th class=listheading colspan="6">[% 'Invoices' | $T8 %]</th>
8   </tr>
9   <tr>
10    <th nowrap class=listheading>[% 'Invoice' | $T8 %]</th>
11    <th nowrap class=listheading width="15%">[% 'Date' | $T8 %]</th>
12    <th nowrap class=listheading width="15%">[% 'Amount' | $T8 %]</th>
13    <th nowrap class=listheading width="15%">[% 'Due' | $T8 %]</th>
14    <th nowrap class=listheading width="10%">[% 'Select' | $T8 %]</th>
15    <th nowrap class=listheading width="15%">[% 'Amount' | $T8 %]</th>
16   </tr>
17 [%- FOREACH row = invoices %]
18   <tr class="listrow[% loop.count % 2 %]">
19     <td>[% row.invnumber | html %][% L.hidden_tag('invnumber_' _ loop.count, row.invnumber); L.hidden_tag('id_' _ loop.count, row.id) %]</td>
20     <td>[% row.transdate | html %][% L.hidden_tag('transdate_' _ loop.count, row.transdate) %]</td>
21     <td class="numeric">[% LxERP.format_amount(row.amount, 2) %][% L.hidden_tag('amount_' _ loop.count, LxERP.format_amount(row.amount, 2)) %]</td>
22     <td class="numeric">[% LxERP.format_amount(row.due, 2) %][% L.hidden_tag('due_' _ loop.count, LxERP.format_amount(row.due, 2)) %]</td>
23     <td align="center">[% L.checkbox_tag('checked_' _ loop.count, checked=row.checked) %]</td>
24     <td class="numeric">[% L.input_tag('paid_' _ loop.count, LxERP.format_amount(row.paid, 2), size=10) %]</td>
25   </tr>
26 [%- END %]
27   <tr class='tisttotal'>
28    <td class="listtotal">&nbsp;</td>
29    <td class="listtotal">&nbsp;</td>
30    <td class="listtotal" align="right">[% LxERP.format_amount(totals.amount, 2) %]</td>
31    <td class="listtotal" align="right">[% LxERP.format_amount(totals.due, 2) %]</td>
32    <td class="listtotal">&nbsp;</td>
33    <td class="listtotal" align="right">[% LxERP.format_amount(totals.paid, 2) %]</td>
34   </tr>
35 </table>