2022-12-24 12:31:45 +11:00
|
|
|
{# DrCr: Web-based double-entry bookkeeping framework
|
|
|
|
Copyright (C) 2022 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.html' %}
|
|
|
|
{% block title %}Statement lines{% endblock %}
|
|
|
|
|
2022-12-24 16:57:53 +11:00
|
|
|
{% block content %}
|
|
|
|
<h1 class="h2 my-4">Statement lines</h1>
|
|
|
|
|
|
|
|
<form method="POST">
|
|
|
|
<div class="mb-2">
|
|
|
|
<button type="submit" class="btn btn-outline-secondary" formaction="/statement-lines/reconcile-transfer">Reconcile selected as transfer</button>
|
|
|
|
</div>
|
2022-12-24 12:31:45 +11:00
|
|
|
|
2022-12-24 16:57:53 +11:00
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th></th>
|
|
|
|
<th>Source account</th>
|
|
|
|
<th>Date</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<th>Charged to</th>
|
2022-12-25 17:05:39 +11:00
|
|
|
<th class="text-end">Dr</th>
|
|
|
|
<th class="text-end">Cr</th>
|
|
|
|
<th class="text-end">Balance</th>
|
2022-12-24 16:57:53 +11:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for line in statement_lines %}
|
|
|
|
<tr data-line-id="{{ line.id }}">
|
|
|
|
<td><input type="checkbox" name="sel-line-id" value="{{ line.id }}"></td>
|
|
|
|
<td>{{ line.source_account }}</td>
|
|
|
|
<td>{{ line.dt.strftime('%Y-%m-%d') }}</td>
|
|
|
|
<td>{{ line.description }}</td>
|
|
|
|
<td class="charge-account">
|
|
|
|
{% if line.postings|length == 0 %}
|
|
|
|
<a href="#" class="text-danger" onclick="classifyLine({{ line.id }});return false;">Unclassified</a>
|
|
|
|
{% elif line.is_complex() %}
|
|
|
|
<i>(Complex)</i>
|
|
|
|
{% else %}
|
|
|
|
<a href="#" class="text-body" onclick="classifyLine({{ line.id }});return false;">{{ line.postings[0].transaction.charge_account(line.source_account) }}</a>
|
|
|
|
{% endif %}
|
|
|
|
<a href="/statement-lines/edit-transaction?line-id={{ line.id }}" class="text-muted"><i class="bi bi-pencil"></i></a>
|
|
|
|
</td>
|
2022-12-25 17:05:39 +11:00
|
|
|
<td class="text-end">{{ line.amount().format() if line.quantity >= 0 else '' }}</td>
|
|
|
|
<td class="text-end">{{ (line.amount()|abs).format() if line.quantity < 0 else '' }}</td>
|
|
|
|
<td class="text-end">{{ line.balance or '' }}</td>
|
2022-12-24 12:31:45 +11:00
|
|
|
</tr>
|
2022-12-24 16:57:53 +11:00
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block scripts %}
|
2022-12-24 12:31:45 +11:00
|
|
|
<script>
|
|
|
|
function classifyLine(lineId) {
|
|
|
|
let chargeAccount = prompt('Charge to:');
|
|
|
|
if (!chargeAccount) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
xhr.addEventListener('load', function() {
|
|
|
|
if (xhr.status === 200) {
|
|
|
|
document.querySelector('[data-line-id="' + lineId + '"] .charge-account a').innerText = chargeAccount;
|
|
|
|
document.querySelector('[data-line-id="' + lineId + '"] .charge-account a').className = 'text-body';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
xhr.open('POST', '/statement-lines/charge');
|
|
|
|
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
|
|
|
xhr.send('line-id=' + lineId + '&charge-account=' + chargeAccount);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|