File: Spanish_Letter-balance_sheet.html

package info (click to toggle)
sql-ledger 2.6.22-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 28,380 kB
  • ctags: 2,890
  • sloc: perl: 40,796; sql: 25,666; sh: 302; makefile: 61
file content (100 lines) | stat: -rw-r--r-- 2,314 bytes parent folder | download | duplicates (12)
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
<head>
  <title>Hoja de Balance</title>
</head>

<body bgcolor=ffffff>

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

<p>HOJA DE BALANCE
<br><%period%>
</h2>

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

<%foreach asset_account%>
<tr>
  <td>&nbsp;</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>Total de activos</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>PASIVOS<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>Total de pasivos</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>CAPITAL<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>Capital total</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>Total de pasivos y capital</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>