Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision c5ebebfb

Von Hans Peter Schlaepfer vor mehr als 5 Jahren hinzugefügt

  • ID c5ebebfb651bfb0ce43b2aaa2aab64223037b1a8
  • Vorgänger 73e09e8b
  • Nachfolger 1440377b

Neues kivitendo Design Aenderungen in templates/webpages/acc*

Dateien in acc_trans/* und acctranscorrections/*

Unterschiede anzeigen:

templates/webpages/acc_trans/_mini_trial_balance.html
1
[% USE L %] [%- USE LxERP %] [%- USE HTML %]
2
<div class="listtop">[%- HTML.escape(title) %]</div>
1
[% USE L %]
2
[% USE LxERP %]
3
[% USE HTML %]
3 4

  
4
 <table id="balances">
5
<div class="wrapper">
6

  
7
<table id="balances" class="tbl-list">
8
  <caption>[% HTML.escape(title) %]</caption>
5 9
  <thead>
6
   <tr>
7
    <th class="listheading">[%- LxERP.t8("Chart") %]</th>
8
    <th class="listheading">[%- LxERP.t8("Description") %]</th>
9
    <th class="listheading">[%- LxERP.t8("Debit") %]</th>
10
    <th class="listheading">[%- LxERP.t8("Credit") %]</th>
11
   </tr>
10
    <tr>
11
      <th class="numeric-centered">[% LxERP.t8("Chart") %]</th>
12
      <th>[% LxERP.t8("Description") %]</th>
13
      <th class="right">[% LxERP.t8("Debit") %]</th>
14
      <th class="right">[% LxERP.t8("Credit") %]</th>
15
    </tr>
12 16
  </thead>
13

  
14 17
  <tbody>
15
   [%- FOREACH balance = BALANCES %]
16
   <tr class="listrow[% loop.count % 2 %]">
17
    <td align="right">[%- balance.accno -%]</td>
18
    <td>[%- balance.description -%]</td>
19
    <td align="right">[%- IF balance.balance < 0 %] [%- LxERP.format_amount(balance.balance * -1, 2) %] [% END %]</td>
20
    <td align="right">[%- IF balance.balance > 0 %] [%- LxERP.format_amount(balance.balance, 2) %] [%- END -%]</td>
21
   </tr>
22
   [%- END %]
18
    [% FOREACH balance = BALANCES %]
19
    <tr>
20
      <td class="numeric-centered">[% balance.accno %]</td>
21
      <td>[% balance.description %]</td>
22
      <td class="numeric">[% IF balance.balance < 0 %] [% LxERP.format_amount(balance.balance * -1, 2) %] [% END %]</td>
23
      <td class="numeric">[% IF balance.balance > 0 %] [% LxERP.format_amount(balance.balance, 2) %] [% END %]</td>
24
    </tr>
25
    [% END %]
23 26
  </tbody>
24
 </table>
27
</table>
28

  
29
</div><!-- /.wrapper -->
25 30
</div>

Auch abrufbar als: Unified diff