File: Slovak_UTF8-balance_sheet.html

package info (click to toggle)
sql-ledger 3.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 35,524 kB
  • ctags: 4,556
  • sloc: perl: 64,519; sql: 28,330; sh: 34; makefile: 21
file content (109 lines) | stat: -rw-r--r-- 2,352 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109

<body>

<h2 align=center>
<%company%>
<br><%address%>

<p>SÚVAHA
<br>k <%this_period%>
</h2>

<%if department%>
<h4>Stredisko: <%department%></h4>
<%end department%>

<table border=0>
<tr>
  <th align=left width=400 colspan=2>AKTÍVA<br><hr align=left width=250 size=5 noshade></th>
  <th><%this_period%></th>
  <th><%last_period%></th>
</tr>

<%foreach asset_account%>
<tr>
  <td> </td>
  <td><%asset_account%></td>
  <td align=right><%asset_this_period%></td>
  <td align=right><%asset_last_period%></td>
</tr>
<%end asset_account%>

<tr>
  <td colspan=2> </td>
  <td><hr noshade size=1></td>
  <td><hr noshade size=1></td>
</tr>

<tr valign=top>
  <th align=left colspan=2>CELKOM AKTÍVA</th>
  <td align=right><%total_assets_this_period%><hr noshade size=2></td>
  <td align=right><%total_assets_last_period%><hr noshade size=2></td>
</tr>

<tr>
  <th align=left colspan=4>PASÍVA<b><hr align=left width=250 size=5 noshade></th>
</tr>

<%foreach liability_account%>
<tr>
  <td></td>
  <td><%liability_account%></td>
  <td align=right><%liability_this_period%></td>
  <td align=right><%liability_last_period%></td>
</tr>
<%end liability_account%>

<tr>
  <td colspan=2> </td>
  <td><hr noshade size=1></td>
  <td><hr noshade size=1></td>
</tr>

<tr valign=top>
  <td></td>
  <th align=left>CELKOM PASÍVA</th>
  <td align=right><%total_liabilities_this_period%><br><hr noshade size=2</td>
  <td align=right><%total_liabilities_last_period%><br><hr noshade size=2</td>
</tr>

<tr>
  <th align=left colspan=4>MAJETOK AKCIONÁRA<br><hr align=left width=250 size=5 noshade></th>
</tr>

<%foreach equity_account%>
<tr>
  <td></td>
  <td><%equity_account%></td>
  <td align=right><%equity_this_period%></td>
  <td align=right><%equity_last_period%></td>
</tr>
<%end equity_account%>

<tr>
  <td colspan=2> </td>
  <td><hr noshade size=1></td>
  <td><hr noshade size=1></td>
</tr>

<tr valign=top>
  <td></td>
  <th align=left>CELKOM MAJETOK A.</th>
  <td align=right><%total_equity_this_period%><br><hr noshade size=2</td>
  <td align=right><%total_equity_last_period%><br><hr noshade size=2</td>
</tr>

<tr valign=top>
  <th align=left colspan=2>CELKOM PASÍVA & MAJETOK A.</th>
  <td align=right><%total_this_period%><br><hr noshade size=2></td>
  <td align=right><%total_last_period%><br><hr noshade size=2></td>
</tr>
</table>

</body>
</html>