Revision 9cb8648b
Von Moritz Bunkus vor etwa 12 Jahren hinzugefügt
templates/webpages/cp/invoices.html | ||
---|---|---|
4 | 4 |
[%- USE LxERP %] |
5 | 5 |
<table width=100%> |
6 | 6 |
<tr> |
7 |
<th class=listheading colspan="6">[% 'Invoices' | $T8 %]</th>
|
|
7 |
<th class=listheading colspan="7">[% 'Invoices' | $T8 %]</th>
|
|
8 | 8 |
</tr> |
9 | 9 |
<tr> |
10 |
<th nowrap class=listheading>[% 'Row number' | $T8 %]</th> |
|
10 | 11 |
<th nowrap class=listheading>[% 'Invoice' | $T8 %]</th> |
11 | 12 |
<th nowrap class=listheading width="15%">[% 'Date' | $T8 %]</th> |
12 | 13 |
<th nowrap class=listheading width="15%">[% 'Amount' | $T8 %]</th> |
... | ... | |
16 | 17 |
</tr> |
17 | 18 |
[%- FOREACH row = invoices %] |
18 | 19 |
<tr class="listrow[% loop.count % 2 %]"> |
20 |
<td>[% loop.count %]</td> |
|
19 | 21 |
<td>[% row.invnumber | html %][% L.hidden_tag('invnumber_' _ loop.count, row.invnumber); L.hidden_tag('id_' _ loop.count, row.id) %]</td> |
20 | 22 |
<td>[% row.transdate | html %][% L.hidden_tag('transdate_' _ loop.count, row.transdate) %]</td> |
21 | 23 |
<td class="numeric">[% LxERP.format_amount(row.amount, 2) %][% L.hidden_tag('amount_' _ loop.count, LxERP.format_amount(row.amount, 2)) %]</td> |
... | ... | |
25 | 27 |
</tr> |
26 | 28 |
[%- END %] |
27 | 29 |
<tr class='tisttotal'> |
30 |
<td class="listtotal"> </td> |
|
28 | 31 |
<td class="listtotal"> </td> |
29 | 32 |
<td class="listtotal"> </td> |
30 | 33 |
<td class="listtotal" align="right">[% LxERP.format_amount(totals.amount, 2) %]</td> |
Auch abrufbar als: Unified diff
Zahlungseingänge/Ausgänge: Zeilennummern anzeigen
Damit kann man Fehlermeldungen besser zuordnen.