Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 5b8ff438

Von Hans Peter Schlaepfer vor etwa 5 Jahren hinzugefügt

  • ID 5b8ff438672be40b321bbe27e01ae852a3bb9045
  • Vorgänger 99621954
  • Nachfolger 867b69c4

Neues kivitendo Design restliche Aenderungen in templates/webpages/c*

Dateien in ca/* chart/* cp/* ct/* cti/* custom_variable_config/*

Unterschiede anzeigen:

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="7">[% 'Invoices' | $T8 %]</th>
8
  </tr>
9
  <tr>
10
   <th nowrap class=listheading>[% 'Row number' | $T8 %]</th>
11
   <th nowrap class=listheading>[% 'Invoice' | $T8 %]</th>
12
   <th nowrap class=listheading width="15%">[% 'Date' | $T8 %]</th>
13
   <th nowrap class=listheading width="15%">[% 'Amount' | $T8 %]</th>
14
   <th nowrap class=listheading width="15%">[% 'Due' | $T8 %]</th>
15
   <th nowrap class=listheading width="10%">[% 'Select' | $T8 %]</th>
16
   <th nowrap class=listheading width="15%">[% 'Amount' | $T8 %]</th>
17
  </tr>
18
[%- FOREACH row = invoices %]
19
  <tr class="listrow[% loop.count % 2 %]">
20
    <td>[% loop.count %]</td>
21
    <td>[% row.invnumber | html %][% L.hidden_tag('invnumber_' _ loop.count, row.invnumber); L.hidden_tag('id_' _ loop.count, row.id) %]</td>
22
    <td>[% row.transdate | html %][% L.hidden_tag('transdate_' _ loop.count, row.transdate) %]</td>
23
    <td class="numeric">[% LxERP.format_amount(row.amount, 2) %][% L.hidden_tag('amount_' _ loop.count, LxERP.format_amount(row.amount, 2)) %]</td>
24
    <td class="numeric">[% LxERP.format_amount(row.due, 2) %][% L.hidden_tag('due_' _ loop.count, LxERP.format_amount(row.due, 2)) %]</td>
25
    <td align="center">[% L.checkbox_tag('checked_' _ loop.count, checked=row.checked) %]</td>
26
    <td class="numeric">[% L.input_tag('paid_' _ loop.count, LxERP.format_amount(row.paid, 2), size=10) %]</td>
27
  </tr>
28
[%- END %]
29
  <tr class='tisttotal'>
30
   <td class="listtotal">&nbsp;</td>
31
   <td class="listtotal">&nbsp;</td>
32
   <td class="listtotal">&nbsp;</td>
33
   <td class="listtotal" align="right">[% LxERP.format_amount(totals.amount, 2) %]</td>
34
   <td class="listtotal" align="right">[% LxERP.format_amount(totals.due, 2) %]</td>
35
   <td class="listtotal">&nbsp;</td>
36
   <td class="listtotal" align="right">[% LxERP.format_amount(totals.paid, 2) %]</td>
37
  </tr>
1
[% USE T8 %]
2
[% USE HTML %]
3
[% USE L %]
4
[% USE LxERP %]
5

  
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>
33
  <tfoot>
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>
43
  </tfoot>
38 44
</table>
45
</div>
46

  

Auch abrufbar als: Unified diff