[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[5853] trunk/UI/Reports/balance_sheet.html
- Subject: SF.net SVN: ledger-smb:[5853] trunk/UI/Reports/balance_sheet.html
- From: ..hidden..
- Date: Tue, 21 May 2013 14:34:47 +0000
Revision: 5853
http://sourceforge.net/p/ledger-smb/code/5853
Author: einhverfr
Date: 2013-05-21 14:34:47 +0000 (Tue, 21 May 2013)
Log Message:
-----------
Balance sheet template, untested
Added Paths:
-----------
trunk/UI/Reports/balance_sheet.html
Added: trunk/UI/Reports/balance_sheet.html
===================================================================
--- trunk/UI/Reports/balance_sheet.html (rev 0)
+++ trunk/UI/Reports/balance_sheet.html 2013-05-21 14:34:47 UTC (rev 5853)
@@ -0,0 +1,61 @@
+<?lsmb include 'ui-header.html' ?>
+<body class="financial-statement balance-sheet">
+<h1><?lsmb text('Balance Sheet') ?></h1>
+<h2><?lsmb text('Through date:') _ ' ' _ report/to_date ?></h2>
+<?lsmb # TODO: header hierarchy handling ?>
+<table>
+<tr class="section-head">
+ <th colspan="2"><?lsmb text('Assets') ?></th>
+</tr>
+<?lsmb FOREACH line IN report.balance_sheet.A.lines ?>
+<tr><th><a href="journal.pl?action=search&to_date=<?lsmb to_date
+ ?>&accno=account_number"
+ ><?lsmb line.account_number _ ': ' _ line.account_description ?></a></th>
+ <td class="amount"><?lsmb line.balance ?> </td>
+</tr>
+<?lsmb END ?>
+<tr><th><?lsmb text('Total Assets') ?></th>
+ <td><?lsmb report.balance_sheet.A.total ?></td>
+</tr>
+<tr class="section-head">
+ <th colspan="2"><?lsmb text('Liabilities') ?></th>
+</tr>
+<?lsmb FOREACH line IN report.balance_sheet.A.lines ?>
+<tr><th><a href="journal.pl?action=search&to_date=<?lsmb to_date
+ ?>&accno=account_number"
+ ><?lsmb line.account_number _ ': ' _ line.account_description ?></a></th>
+ <td class="amount"><?lsmb line.balance ?> </td>
+</tr>
+<?lsmb END ?>
+<tr><th><?lsmb text('Total Liabilities') ?></th>
+ <td><?lsmb report.balance_sheet.L.total ?></td>
+</tr>
+<tr class="section-head">
+ <th colspan="2"><?lsmb text('Equity') ?></th>
+</tr>
+<?lsmb FOREACH line IN report.balance_sheet.A.lines ?>
+<tr><th><a href="journal.pl?action=search&to_date=<?lsmb to_date
+ ?>&accno=account_number"
+ ><?lsmb line.account_number _ ': ' _ line.account_description ?></a></th>
+ <td class="amount"><?lsmb line.balance ?> </td>
+</tr>
+<?lsmb END ?>
+<tr><th><?lsmb text('Total Equity') ?></th>
+ <td><?lsmb report.balance_sheet.Q.total ?></td>
+</tr>
+</table>
+
+<h2>Key Ratios</h2>
+<table>
+<tr><th><?lsmb text('Assets to Liabilities') ?></th>
+ <td><?lsmb report.balance_sheet.ratios.AL ?></td>
+</tr>
+<tr><th><?lsmb text('Assets to Equity') ?></th>
+ <td><?lsmb report.balance_sheet.ratios.AQ ?></td>
+</tr>
+<tr><th><?lsmb text('Liabilities to Equity') ?></th>
+ <td><?lsmb report.balance_sheet.ratios.LQ ?></td>
+</tr>
+</table>
+</body>
+</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.