Revision 0a53543f
Von Hans Peter Schlaepfer vor fast 5 Jahren hinzugefügt
templates/webpages/rp/erfolgsrechnung.html | ||
---|---|---|
1 | 1 |
[% USE T8 %] |
2 | 2 |
[% USE HTML %] |
3 | 3 |
[% USE LxERP %] |
4 |
|
|
5 |
<h2 align="center">
|
|
6 |
<br>[% company %]
|
|
7 |
<br>[% address %]
|
|
8 |
<p>[% 'ERFOLGSRECHNUNG' %]
|
|
9 |
<br>[% fromdate %] bis [% todate %]
|
|
4 |
<!-- PENDENT: Ueberschriften mal genauer anschauen --> |
|
5 |
<h2> |
|
6 |
<b>[% company %]<br></b>
|
|
7 |
[% address %]<br>
|
|
8 |
<big>[% 'ERFOLGSRECHNUNG' %]</big><br>
|
|
9 |
<i>[% fromdate %] bis [% todate %]</i>
|
|
10 | 10 |
</h2> |
11 |
<table border="0"> |
|
12 |
<tr> |
|
13 |
<th align="left" width="400" colspan="2"><br></th> |
|
14 |
</tr> |
|
15 |
[%- FOREACH category = categories %] |
|
16 |
<tr valign="top"> |
|
17 |
<th align="left" colspan="4">[% category.name %]<b><hr align="left" width="250" size="5" noshade></th> |
|
18 |
</tr> |
|
19 |
[%- FOREACH row = category.accounts %] |
|
11 |
|
|
12 |
<table class="tbl-list"> |
|
13 |
<tbody> |
|
14 |
[% FOREACH category = categories %] |
|
20 | 15 |
<tr> |
21 |
<td align="left">[% row.accno %]</td> |
|
22 |
<td align="left">[% row.description %]</td> |
|
23 |
<td align="right">[% row.total %]</td> |
|
16 |
<th class="caption" colspan="3">[% category.name %]</th> |
|
24 | 17 |
</tr> |
25 |
[%- END %] |
|
18 |
[% FOREACH row = category.accounts %] |
|
19 |
<tr> |
|
20 |
<td>[% row.accno %]</td> |
|
21 |
<td>[% row.description %]</td> |
|
22 |
<td class="numeric">[% row.total %]</td> |
|
23 |
</tr> |
|
24 |
[% END %] |
|
25 |
<tr> |
|
26 |
<th colspan="2">TOTAL</th> |
|
27 |
<td class="right">[% category.total %]</td> |
|
28 |
</tr> |
|
29 |
[% END %] |
|
30 |
</tbody> |
|
31 |
<tfoot> |
|
26 | 32 |
<tr> |
27 |
<td colspan="2"> </td> |
|
28 |
<td><hr noshade size="1"></td> |
|
29 |
<td><hr noshade size="1"></td> |
|
30 |
</tr> |
|
31 |
<tr valign="top"> |
|
32 |
<th align="left" colspan="2">TOTAL</th> |
|
33 |
<td align="right">[% category.total %]<hr noshade size="2"></td> |
|
33 |
<th colspan="2">GEWINN/VERLUST</th> |
|
34 |
<td class="numeric">[% total %]<br><hr noshade size="2"></td> |
|
34 | 35 |
</tr> |
35 |
[%- END %] |
|
36 |
<tr valign="top"> |
|
37 |
<th align="left" colspan="2">GEWINN/VERLUST</th> |
|
38 |
<td align="right">[% total %]<br><hr noshade size="2"></td> |
|
39 |
</tr> |
|
36 |
</tfoot> |
|
40 | 37 |
</table> |
Auch abrufbar als: Unified diff
Design 4.0: Anpassungen neues kivitendo Design in templates/webpages/rp/..