2020-02-15 15:50:33 +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' %}
|
|
|
|
|
|
|
|
{% block title %}{% if account %}Account Transactions{% else %}General Ledger{% endif %} as at {{ date.strftime('%d %B %Y') }}{% endblock %}
|
|
|
|
|
2020-03-23 17:17:10 +11:00
|
|
|
{% block links %}
|
|
|
|
{{ super() }}
|
2020-03-23 20:23:31 +11:00
|
|
|
{% if account %}<a href="/transactions_commodity?{{ {'date': date.strftime('%Y-%m-%d'), 'pstart': pstart.strftime('%Y-%m-%d'), 'account': account.name, 'cash': 'on' if cash else ''}|urlencode }}">Show commodity detail</a>{% endif %}
|
2020-03-23 17:17:10 +11:00
|
|
|
{% endblock %}
|
|
|
|
|
2020-03-20 23:20:39 +11:00
|
|
|
{% block report %}
|
|
|
|
{% if account %}
|
|
|
|
<h1>Account Transactions</h1>
|
|
|
|
<h2 style="margin-bottom: 0;">For {{ account.name }}</h2>
|
|
|
|
{% else %}
|
|
|
|
<h1>General Ledger</h1>
|
|
|
|
{% endif %}
|
|
|
|
<h2>For the {{ period }}</h2>
|
|
|
|
|
|
|
|
<table class="ledger">
|
|
|
|
<tr>
|
|
|
|
<th style="width: 5em;">Date</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<th style="max-width: 8em;">Account</th>
|
|
|
|
<th class="h1" style="text-align: right; width: 5em;">Dr</th>
|
|
|
|
<th class="h1" style="text-align: right; width: 5em;">Cr</th>
|
|
|
|
{% if account %}<th class="h1" style="text-align: right; width: 6em;">Balance</th>{% endif %}
|
|
|
|
</tr>
|
2020-02-15 15:50:33 +11:00
|
|
|
|
2020-03-20 23:20:39 +11:00
|
|
|
{% set ns = namespace(balance=None) %}
|
|
|
|
{% if account %}
|
2020-03-23 02:01:53 +11:00
|
|
|
{% set prevlink = '/transactions?' + {'date': (pstart - timedelta(days=1)).strftime('%Y-%m-%d'), 'pstart': pstart.replace(year=pstart.year-1).strftime('%Y-%m-%d'), 'account': account.name, 'cash': 'on' if cash else ''}|urlencode %}
|
2020-03-20 23:20:39 +11:00
|
|
|
<tr class="total">
|
2020-03-23 02:01:53 +11:00
|
|
|
<td><a href="{{ prevlink }}">{{ pstart.strftime('%Y-%m-%d') }}</a></td>
|
|
|
|
<td><a href="{{ prevlink }}">Opening Balance</a></td>
|
2020-03-20 23:20:39 +11:00
|
|
|
<td></td>
|
|
|
|
<td style="text-align: right;"></td>
|
|
|
|
<td style="text-align: right;"></td>
|
|
|
|
<td style="text-align: right;">
|
2020-03-23 02:01:53 +11:00
|
|
|
<a href="{{ prevlink }}">
|
2020-03-20 21:43:05 +11:00
|
|
|
{% if opening_balance >= 0 %}
|
|
|
|
{{ opening_balance|b }} Dr
|
|
|
|
{% else %}
|
|
|
|
{{ -opening_balance|b }} Cr
|
|
|
|
{% endif %}
|
2020-03-20 23:20:39 +11:00
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% set ns.balance = opening_balance %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% for transaction in transactions %}
|
2020-03-23 00:47:00 +11:00
|
|
|
{% for posting in transaction.postings if posting.account != account %}
|
2020-03-20 23:20:39 +11:00
|
|
|
{% set amount = posting.exchange(report_currency, transaction.date) %}
|
|
|
|
<tr>
|
|
|
|
<td>{% if loop.first %}{{ transaction.date.strftime('%Y-%m-%d') }}{% endif %}</td>
|
|
|
|
<td>{% if loop.first %}{{ transaction.description }}{% endif %}</td>
|
2020-03-21 01:18:48 +11:00
|
|
|
<td><a href="/transactions?{{ {'date': date.strftime('%Y-%m-%d'), 'pstart': pstart.strftime('%Y-%m-%d'), 'account': posting.account.name, 'cash': 'on' if cash else ''}|urlencode }}">{{ (posting.account.name|e).__str__().replace(':', ':<wbr>')|safe }}</a></td>
|
2020-03-20 23:20:39 +11:00
|
|
|
{% if account %}
|
|
|
|
{# Reverse Dr/Cr so it's from the "perspective" of this account #}
|
|
|
|
{% set ns.balance = ns.balance - amount %}
|
|
|
|
<td style="text-align: right;">{% if amount < 0 %}<span title="{{ (-posting.amount).tostr(False) }}">{{ -amount|b }}</span>{% endif %}</td>
|
|
|
|
<td style="text-align: right;">{% if amount > 0 %}<span title="{{ posting.amount.tostr(False) }}">{{ amount|b }}</span>{% endif %}</td>
|
|
|
|
<td style="text-align: right;">
|
|
|
|
{% if loop.last %}
|
|
|
|
{% if ns.balance >= 0 %}
|
|
|
|
{{ ns.balance|b }} Dr
|
|
|
|
{% else %}
|
|
|
|
{{ -ns.balance|b }} Cr
|
2020-03-20 18:54:01 +11:00
|
|
|
{% endif %}
|
2020-03-20 23:20:39 +11:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
{% else %}
|
|
|
|
<td style="text-align: right;">{% if amount > 0 %}<span title="{{ posting.amount.tostr(False) }}">{{ amount|b }}</span>{% endif %}</td>
|
|
|
|
<td style="text-align: right;">{% if amount < 0 %}<span title="{{ (-posting.amount).tostr(False) }}">{{ -amount|b }}</span>{% endif %}</td>
|
|
|
|
{% endif %}
|
2020-03-20 21:43:05 +11:00
|
|
|
</tr>
|
2020-03-20 23:20:39 +11:00
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% if account %}
|
|
|
|
<tr class="total">
|
|
|
|
<td>{{ date.strftime('%Y-%m-%d') }}</td>
|
|
|
|
<td>Closing Balance</td>
|
|
|
|
<td></td>
|
|
|
|
<td style="text-align: right;"></td>
|
|
|
|
<td style="text-align: right;"></td>
|
|
|
|
<td style="text-align: right;">
|
|
|
|
{% if closing_balance >= 0 %}
|
|
|
|
{{ closing_balance|b }} Dr
|
|
|
|
{% else %}
|
|
|
|
{{ -closing_balance|b }} Cr
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% else %}
|
|
|
|
<tr class="total">
|
|
|
|
<td>{{ date.strftime('%Y-%m-%d') }}</td>
|
|
|
|
<td>Total</td>
|
|
|
|
<td></td>
|
|
|
|
<td style="text-align: right;">{{ total_dr|b }}</td>
|
|
|
|
<td style="text-align: right;">{{ -total_cr|b }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|