2020-01-14 00:06:14 +11:00
|
|
|
{#
|
|
|
|
ledger-pyreport
|
|
|
|
Copyright © 2020 Lee Yingtong Li (RunasSudo)
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
#}
|
|
|
|
|
2020-03-20 23:20:39 +11:00
|
|
|
{% extends 'base_report.html' %}
|
|
|
|
|
2020-02-15 11:47:10 +11:00
|
|
|
{% macro print_rows(account, invert=False, level=0) %}
|
2020-01-14 00:06:14 +11:00
|
|
|
<tr>
|
2020-02-15 15:50:33 +11:00
|
|
|
<td style="padding-left: calc(2px + {{ level }}em);">
|
|
|
|
{% if pandls|length == 1 %}
|
2020-03-21 01:18:48 +11:00
|
|
|
<a href="/transactions?{{ {'date': pandls[0].date.strftime('%Y-%m-%d'), 'pstart': pandls[0].pstart.strftime('%Y-%m-%d'), 'account': account.name, 'cash': 'on' if cash else ''}|urlencode }}">{{ account.bits[-1] }}</a>
|
2020-02-15 15:50:33 +11:00
|
|
|
{% else %}
|
|
|
|
{{ account.bits[-1] }}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
2020-02-15 11:47:10 +11:00
|
|
|
{% for pandl in pandls %}
|
2020-03-20 22:14:05 +11:00
|
|
|
{% set amount = (-pandl.get_balance(account) if invert else pandl.get_balance(account)).exchange(report_currency, True) %}
|
2020-03-23 02:00:00 +11:00
|
|
|
<td>{% if not amount.near_zero %}<a href="/transactions?{{ {'date': pandl.date.strftime('%Y-%m-%d'), 'pstart': pandl.pstart.strftime('%Y-%m-%d'), 'account': account.name, 'cash': 'on' if cash else ''}|urlencode }}">{{ amount|a }}</a>{% endif %}</td>
|
2020-02-15 11:47:10 +11:00
|
|
|
{% endfor %}
|
2020-01-14 00:06:14 +11:00
|
|
|
</tr>
|
2020-02-15 11:47:10 +11:00
|
|
|
|
2020-03-23 00:51:13 +11:00
|
|
|
{% for child in account.children|sort(attribute='name') if child in accounts %}
|
2020-02-15 11:47:10 +11:00
|
|
|
{{ print_rows(child, invert, level + 1) }}
|
|
|
|
{% endfor %}
|
2020-01-14 00:06:14 +11:00
|
|
|
{% endmacro %}
|
|
|
|
|
2020-02-15 11:47:10 +11:00
|
|
|
{% macro do_accounts(root, label, invert, year_headers) %}
|
|
|
|
<tr>
|
|
|
|
{% if year_headers %}
|
|
|
|
{# CSS hackery to centre-align the heading #}
|
2020-02-15 15:50:33 +11:00
|
|
|
<th class="h1" style="padding-left: calc(2px + {{ pandls|length * 6 }}em);">{{ label }}</th>
|
|
|
|
{% for pandl in pandls %}<th class="h2">{{ pandl.date.strftime('%Y') }} </th>{% endfor %}
|
2020-02-15 11:47:10 +11:00
|
|
|
{% else %}
|
2020-02-15 15:50:33 +11:00
|
|
|
<th class="h1" colspan="{{ pandls|length + 1 }}">{{ label }}</th>
|
2020-02-15 11:47:10 +11:00
|
|
|
{% endif %}
|
|
|
|
</tr>
|
|
|
|
|
2020-03-23 00:51:13 +11:00
|
|
|
{% for account in root.children|sort(attribute='name') if account in accounts %}
|
2020-02-15 11:47:10 +11:00
|
|
|
{{ print_rows(account, invert=invert) }}
|
2020-01-14 00:06:14 +11:00
|
|
|
{% endfor %}
|
2020-02-15 11:47:10 +11:00
|
|
|
|
|
|
|
<tr class="total">
|
|
|
|
<td>Total {{ label }}</td>
|
2020-03-20 22:14:05 +11:00
|
|
|
{% for pandl in pandls %}<td>{{ (-pandl.get_total(root) if invert else pandl.get_total(root)).exchange(report_currency, True)|a }}</td>{% endfor %}
|
2020-02-15 11:47:10 +11:00
|
|
|
</tr>
|
2020-01-14 00:06:14 +11:00
|
|
|
{% endmacro %}
|
|
|
|
|
2020-03-20 23:20:39 +11:00
|
|
|
{% block title %}Income Statement for the {{ period }}{% endblock %}
|
|
|
|
|
|
|
|
{% block report %}
|
|
|
|
<h1>Income Statement</h1>
|
|
|
|
<h2>For the {{ period }}</h2>
|
|
|
|
|
|
|
|
<table class="ledger onedesc">
|
|
|
|
{{ do_accounts(ledger.get_account(config['income_account']), 'Income', True, True) }}
|
|
|
|
<tr><td colspan="2"> </td></tr>
|
|
|
|
|
|
|
|
{{ do_accounts(ledger.get_account(config['expenses_account']), 'Expenses', False, False) }}
|
|
|
|
<tr><td colspan="2"> </td></tr>
|
2020-01-14 00:06:14 +11:00
|
|
|
|
2020-03-20 23:20:39 +11:00
|
|
|
<tr class="total">
|
|
|
|
<td>Net Surplus (Loss)</td>
|
|
|
|
{% for pandl in pandls %}<td>{{ -(pandl.get_total(ledger.get_account(config['income_account'])) + pandl.get_total(ledger.get_account(config['expenses_account']))).exchange(report_currency, True)|a }}</td>{% endfor %}
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|