92 lines
2.8 KiB
HTML
92 lines
2.8 KiB
HTML
{#
|
|
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/>.
|
|
#}
|
|
|
|
{% extends 'base_report.html' %}
|
|
|
|
{% block title %}{{ transaction.description }}{% endblock %}
|
|
|
|
{% block report %}
|
|
<h1 style="margin-bottom: 1em;">Transaction</h1>
|
|
|
|
<table class="ledger" style="margin-bottom: 1em;">
|
|
<tr>
|
|
<th style="width: 5em;">Date</th>
|
|
<th style="width: 5em;">Code</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ transaction.date.strftime('%Y-%m-%d') }}</td>
|
|
<td>{{ transaction.code }}</td>
|
|
<td>{{ transaction.description }}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table class="ledger">
|
|
<tr>
|
|
{#<th style="width: 5em;">Date</th>#}
|
|
<th>Description</th>
|
|
<th style="max-width: 8em;">Account</th>
|
|
<th style="text-align: right; width: 4em;">Dr</th> {# Amount #}
|
|
<th style="width: 2em;"></th> {# Currency #}
|
|
<th style="width: 2em;"></th> {# Price #}
|
|
<th style="text-align: right; width: 4em;">Cr</th>
|
|
<th style="width: 2em;"></th>
|
|
<th style="width: 2em;"></th>
|
|
</tr>
|
|
|
|
{% for posting in transaction.postings %}
|
|
{% set trn_url = '/transaction?' + {'tid': transaction.id, 'cash': 'on' if cash else ''}|urlencode %}
|
|
<tr>
|
|
<td>{{ posting.comment }}</td>
|
|
<td>{{ (posting.account.name|e).__str__().replace(':', ':<wbr>')|safe }}</td>
|
|
{% if posting.amount >= 0 %}
|
|
{{ posting.amount|bt(True) }}
|
|
<td colspan="3"></td>
|
|
{% else %}
|
|
<td colspan="3"></td>
|
|
{{ -posting.amount|bt(True) }}
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
{% for dr_amount, cr_amount in totals %}
|
|
<tr class="total explicit-rules" style="{% if loop.first %}border-top: 1pt solid black;{% endif %}{% if loop.last %}border-bottom: 1pt solid black;{% endif %}">
|
|
<td>{% if loop.first %}Total{% endif %}</td>
|
|
<td></td>
|
|
{% if dr_amount %}
|
|
{{ dr_amount|bt(True) }}
|
|
{% else %}
|
|
<td colspan="3"></td>
|
|
{% endif %}
|
|
{% if cr_amount %}
|
|
{{ -cr_amount|bt(True) }}
|
|
{% else %}
|
|
<td colspan="3"></td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
<tr class="total">
|
|
<td></td>
|
|
<td></td>
|
|
{{ total_dr|bt(True) }}
|
|
{{ -total_cr|bt(True) }}
|
|
</tr>
|
|
</table>
|
|
{% endblock %}
|