Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 3fc38171

Von Andreas Rudin vor etwa 6 Jahren hinzugefügt

  • ID 3fc381717c5e7f0f657f604880fac7b7be4e492b
  • Vorgänger 9439c4f2
  • Nachfolger a58ef474

HP Aenderungen bis Oktober 2018

Unterschiede anzeigen:

templates/webpages/cp/invoices.html
3 3
[% USE L %]
4 4
[% USE LxERP %]
5 5

  
6
<table class="tbl-liste wi-moderate">
7
	<caption>[% 'Invoices' | $T8 %]</caption>
8
	<thead>
9
		<tr>
10
			<th>[% 'Row number' | $T8 %]</th>
11
			<th>[% 'Invoice' | $T8 %]</th>
12
			<th>[% 'Date' | $T8 %]</th>
13
			<th>[% 'Amount' | $T8 %]</th>
14
			<th>[% 'Due' | $T8 %]</th>
15
			<th>[% 'Select' | $T8 %]</th>
16
			<th>[% 'Amount' | $T8 %]</th>
17
		</tr>
18
	</thead>
19
	<tbody>
20
		[% FOREACH row = invoices %] 
21
		<tr>
22
			<td>[% loop.count %]</td>
23
			<td>[% row.invnumber | html %][% L.hidden_tag('invnumber_' _ loop.count, row.invnumber); L.hidden_tag('id_' _ loop.count, row.id) %]</td>
24
			<td>[% row.transdate | html %][% L.hidden_tag('transdate_' _ loop.count, row.transdate) %]</td>
25
			<td class="numeric">[% LxERP.format_amount(row.amount, 2) %][% L.hidden_tag('amount_' _ loop.count, LxERP.format_amount(row.amount, 2)) %]</td>
26
			<td class="numeric">[% LxERP.format_amount(row.due, 2) %][% L.hidden_tag('due_' _ loop.count, LxERP.format_amount(row.due, 2)) %]</td>
27
			<td>[% L.checkbox_tag('checked_' _ loop.count, checked=row.checked) %]</td>
28
			<td class="numeric">[% L.input_tag('paid_' _ loop.count, LxERP.format_amount(row.paid, 2), size=10) %]</td>
29
		</tr>
30
		[% END %] 
31
	</tbody>
6
<div class="wrapper">
7
<table class="tbl-list wi-moderate">
8
  <caption>[% 'Invoices' | $T8 %]</caption>
9
  <thead>
10
    <tr>
11
      <th>[% 'Row number' | $T8 %]</th>
12
      <th>[% 'Invoice' | $T8 %]</th>
13
      <th>[% 'Date' | $T8 %]</th>
14
      <th>[% 'Amount' | $T8 %]</th>
15
      <th>[% 'Due' | $T8 %]</th>
16
      <th>[% 'Select' | $T8 %]</th>
17
      <th>[% 'Amount' | $T8 %]</th>
18
    </tr>
19
  </thead>
20
  <tbody>
21
    [% FOREACH row = invoices %]
22
    <tr>
23
      <td>[% loop.count %]</td>
24
      <td>[% row.invnumber | html %][% L.hidden_tag('invnumber_' _ loop.count, row.invnumber); L.hidden_tag('id_' _ loop.count, row.id) %]</td>
25
      <td>[% row.transdate | html %][% L.hidden_tag('transdate_' _ loop.count, row.transdate) %]</td>
26
      <td class="numeric">[% LxERP.format_amount(row.amount, 2) %][% L.hidden_tag('amount_' _ loop.count, LxERP.format_amount(row.amount, 2)) %]</td>
27
      <td class="numeric">[% LxERP.format_amount(row.due, 2) %][% L.hidden_tag('due_' _ loop.count, LxERP.format_amount(row.due, 2)) %]</td>
28
      <td>[% L.checkbox_tag('checked_' _ loop.count, checked=row.checked) %]</td>
29
      <td class="numeric">[% L.input_tag('paid_' _ loop.count, LxERP.format_amount(row.paid, 2), size=10) %]</td>
30
    </tr>
31
    [% END %]
32
  </tbody>
32 33
  <tfoot>
33
		<tr>
34
			<td></td>
35
			<td></td>
36
			<td></td>
37
			<td class="numeric">[% LxERP.format_amount(totals.amount, 2) %]</td>
38
			<td class="numeric">[% LxERP.format_amount(totals.due, 2) %]</td>
39
			<td></td>
40
			<td class="numeric">[% LxERP.format_amount(totals.paid, 2) %]</td>
41
		</tr>
34
    <tr>
35
      <td></td>
36
      <td></td>
37
      <td></td>
38
      <td class="numeric">[% LxERP.format_amount(totals.amount, 2) %]</td>
39
      <td class="numeric">[% LxERP.format_amount(totals.due, 2) %]</td>
40
      <td></td>
41
      <td class="numeric">[% LxERP.format_amount(totals.paid, 2) %]</td>
42
    </tr>
42 43
  </tfoot>
43 44
</table>
45
</div>
44 46

  

Auch abrufbar als: Unified diff