{# 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 . #} {% macro print_rows(account, invert=False, level=0) %} {{ account.bits[-1] }} {% for pandl in pandls %} {% set amount = pandl.get_balance(account.name) * (-1 if invert else 1) %} {% if amount != 0 %}{{ amount|a }}{% endif %} {% endfor %} {% for child in account.children if child in accounts %} {{ print_rows(child, invert, level + 1) }} {% endfor %} {% endmacro %} {% macro do_accounts(root, label, invert, year_headers) %} {% if year_headers %} {# CSS hackery to centre-align the heading #} {{ label }} {% for date in dates_end %}{{ date.strftime('%Y') }} {% endfor %} {% else %} {{ label }} {% endif %} {% for account in pandls[0].get_account(root).children if account in accounts %} {{ print_rows(account, invert=invert) }} {% endfor %} Total {{ label }} {% for pandl in pandls %}{{ (pandl.get_total(root) * (-1 if invert else 1))|a }}{% endfor %} {% endmacro %} Income Statement for the {{ period }}

Income Statement

For the {{ period }}

{{ do_accounts(config['income_account'], 'Income', True, True) }} {{ do_accounts(config['expenses_account'], 'Expenses', False, False) }} {% for pandl in pandls %}{% endfor %}
 
 
Net Surplus (Loss){{ -(pandl.get_total(config['income_account']) + pandl.get_total(config['expenses_account']))|a }}