2022-12-24 12:31:45 +11:00
|
|
|
# DrCr: Web-based double-entry bookkeeping framework
|
2023-01-02 18:08:30 +11:00
|
|
|
# Copyright (C) 2022–2023 Lee Yingtong Li (RunasSudo)
|
2022-12-24 12:31:45 +11:00
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2022-12-24 17:39:18 +11:00
|
|
|
from flask import abort, redirect, render_template, request
|
2022-12-24 12:31:45 +11:00
|
|
|
|
2022-12-24 17:39:18 +11:00
|
|
|
from .. import AMOUNT_DPS
|
2023-01-02 16:59:12 +11:00
|
|
|
from ..database import db
|
2023-01-02 18:08:30 +11:00
|
|
|
from ..models import Amount, Posting, Transaction, TrialBalancer
|
2022-12-24 17:39:18 +11:00
|
|
|
from ..webapp import all_transactions, app
|
2023-01-02 18:08:30 +11:00
|
|
|
from .models import BalanceAssertion
|
2022-12-24 17:39:18 +11:00
|
|
|
|
|
|
|
from datetime import datetime
|
2022-12-24 12:31:45 +11:00
|
|
|
|
2023-01-02 18:08:30 +11:00
|
|
|
@app.route('/journal')
|
|
|
|
def journal():
|
2022-12-25 17:31:31 +11:00
|
|
|
return render_template(
|
2023-01-02 18:08:30 +11:00
|
|
|
'journal/journal.html',
|
2022-12-25 17:31:31 +11:00
|
|
|
commodity_detail=request.args.get('commodity-detail', '0') == '1',
|
2023-01-02 18:08:30 +11:00
|
|
|
transactions=sorted(Transaction.query.all(), key=lambda t: t.dt)
|
2022-12-25 17:31:31 +11:00
|
|
|
)
|
2022-12-24 18:20:42 +11:00
|
|
|
|
2023-01-02 18:08:30 +11:00
|
|
|
@app.route('/journal/new-transaction', methods=['GET', 'POST'])
|
|
|
|
def journal_new_transaction():
|
2022-12-24 18:20:42 +11:00
|
|
|
if request.method == 'GET':
|
2023-01-02 18:08:30 +11:00
|
|
|
return render_template('journal/journal_edit_transaction.html', transaction=None)
|
2022-12-24 18:20:42 +11:00
|
|
|
|
|
|
|
# New transaction
|
2023-01-02 18:08:30 +11:00
|
|
|
transaction = Transaction(
|
2022-12-24 18:20:42 +11:00
|
|
|
dt=datetime.strptime(request.form['dt'], '%Y-%m-%d'),
|
|
|
|
description=request.form['description'],
|
|
|
|
postings=[]
|
|
|
|
)
|
|
|
|
|
2022-12-24 19:45:34 +11:00
|
|
|
for account, sign, amount_str in zip(request.form.getlist('account'), request.form.getlist('sign'), request.form.getlist('amount')):
|
|
|
|
amount = Amount.parse(amount_str)
|
2022-12-24 18:20:42 +11:00
|
|
|
if sign == 'cr':
|
2022-12-24 19:45:34 +11:00
|
|
|
amount = -amount
|
2022-12-24 18:20:42 +11:00
|
|
|
|
2023-01-02 18:08:30 +11:00
|
|
|
posting = Posting(
|
2022-12-24 18:20:42 +11:00
|
|
|
account=account,
|
2022-12-24 19:45:34 +11:00
|
|
|
quantity=amount.quantity,
|
|
|
|
commodity=amount.commodity
|
2022-12-24 18:20:42 +11:00
|
|
|
)
|
|
|
|
transaction.postings.append(posting)
|
|
|
|
|
|
|
|
transaction.assert_valid()
|
|
|
|
|
2023-01-02 16:59:12 +11:00
|
|
|
db.session.add(transaction)
|
|
|
|
db.session.commit()
|
2022-12-24 18:20:42 +11:00
|
|
|
|
2023-01-02 18:08:30 +11:00
|
|
|
return redirect('/journal')
|
2022-12-24 17:39:18 +11:00
|
|
|
|
2023-01-02 18:08:30 +11:00
|
|
|
@app.route('/journal/edit-transaction', methods=['GET', 'POST'])
|
|
|
|
def journal_edit_transaction():
|
|
|
|
transaction = db.session.get(Transaction, request.args['id'])
|
2022-12-24 20:41:33 +11:00
|
|
|
if not transaction:
|
|
|
|
abort(404)
|
|
|
|
|
|
|
|
if request.method == 'GET':
|
2023-01-02 18:08:30 +11:00
|
|
|
return render_template('journal/journal_edit_transaction.html', transaction=transaction)
|
2022-12-24 20:41:33 +11:00
|
|
|
|
|
|
|
# Edit transaction
|
|
|
|
transaction.dt = datetime.strptime(request.form['dt'], '%Y-%m-%d')
|
|
|
|
transaction.description = request.form['description']
|
|
|
|
transaction.postings = []
|
|
|
|
|
2023-01-02 18:08:30 +11:00
|
|
|
# FIXME: This will orphan StatementLineReconciliations
|
|
|
|
|
2022-12-24 20:41:33 +11:00
|
|
|
for account, sign, amount_str in zip(request.form.getlist('account'), request.form.getlist('sign'), request.form.getlist('amount')):
|
|
|
|
amount = Amount.parse(amount_str)
|
|
|
|
if sign == 'cr':
|
|
|
|
amount = -amount
|
|
|
|
|
2023-01-02 18:08:30 +11:00
|
|
|
posting = Posting(
|
2022-12-24 20:41:33 +11:00
|
|
|
account=account,
|
|
|
|
quantity=amount.quantity,
|
|
|
|
commodity=amount.commodity
|
|
|
|
)
|
|
|
|
transaction.postings.append(posting)
|
|
|
|
|
|
|
|
transaction.assert_valid()
|
|
|
|
|
2023-01-02 16:59:12 +11:00
|
|
|
db.session.commit()
|
2022-12-24 20:41:33 +11:00
|
|
|
|
2023-01-02 18:08:30 +11:00
|
|
|
return redirect('/journal')
|
2022-12-24 20:41:33 +11:00
|
|
|
|
2022-12-24 17:39:18 +11:00
|
|
|
@app.route('/balance-assertions')
|
|
|
|
def balance_assertions():
|
|
|
|
assertions = BalanceAssertion.query.all()
|
|
|
|
|
|
|
|
# Check assertion status
|
|
|
|
transactions = all_transactions()
|
|
|
|
assertion_status = {}
|
|
|
|
for assertion in assertions:
|
|
|
|
# FIXME: This is very inefficient
|
|
|
|
balancer = TrialBalancer()
|
|
|
|
balancer.apply_transactions([t for t in transactions if t.dt <= assertion.dt])
|
|
|
|
|
|
|
|
# TODO: Commodities
|
|
|
|
if balancer.accounts[assertion.account].quantity == assertion.quantity:
|
|
|
|
assertion_status[assertion] = True
|
|
|
|
else:
|
|
|
|
assertion_status[assertion] = False
|
|
|
|
|
2023-01-02 18:08:30 +11:00
|
|
|
return render_template('journal/balance_assertions.html', assertions=assertions, assertion_status=assertion_status)
|
2022-12-24 17:39:18 +11:00
|
|
|
|
|
|
|
@app.route('/balance-assertions/new', methods=['GET', 'POST'])
|
|
|
|
def balance_assertions_new():
|
|
|
|
if request.method == 'GET':
|
2023-01-02 18:08:30 +11:00
|
|
|
return render_template('journal/balance_assertions_edit.html', assertion=None)
|
2022-12-24 17:39:18 +11:00
|
|
|
|
|
|
|
quantity = round(float(request.form['amount']) * (10**AMOUNT_DPS))
|
|
|
|
if request.form['sign'] == 'cr':
|
|
|
|
quantity = -quantity
|
|
|
|
|
|
|
|
# New balance assertion
|
|
|
|
assertion = BalanceAssertion(
|
|
|
|
dt=datetime.strptime(request.form['dt'], '%Y-%m-%d'),
|
|
|
|
description=request.form['description'],
|
|
|
|
account=request.form['account'],
|
|
|
|
quantity=quantity,
|
|
|
|
commodity='$'
|
|
|
|
)
|
2023-01-02 16:59:12 +11:00
|
|
|
db.session.add(assertion)
|
|
|
|
db.session.commit()
|
2022-12-24 17:39:18 +11:00
|
|
|
|
|
|
|
return redirect('/balance-assertions')
|
|
|
|
|
|
|
|
@app.route('/balance-assertions/edit', methods=['GET', 'POST'])
|
|
|
|
def balance_assertions_edit():
|
2023-01-02 16:59:12 +11:00
|
|
|
assertion = db.session.get(BalanceAssertion, request.args['id'])
|
2022-12-24 17:39:18 +11:00
|
|
|
if not assertion:
|
|
|
|
abort(404)
|
|
|
|
|
|
|
|
if request.method == 'GET':
|
2023-01-02 18:08:30 +11:00
|
|
|
return render_template('journal/balance_assertions_edit.html', assertion=assertion)
|
2022-12-24 17:39:18 +11:00
|
|
|
|
|
|
|
quantity = round(float(request.form['amount']) * (10**AMOUNT_DPS))
|
|
|
|
if request.form['sign'] == 'cr':
|
|
|
|
quantity = -quantity
|
|
|
|
|
|
|
|
# Edit balance assertion
|
|
|
|
assertion.dt = datetime.strptime(request.form['dt'], '%Y-%m-%d')
|
|
|
|
assertion.description = request.form['description']
|
|
|
|
assertion.account = request.form['account']
|
|
|
|
assertion.quantity = quantity
|
|
|
|
|
2023-01-02 16:59:12 +11:00
|
|
|
db.session.commit()
|
2022-12-24 17:39:18 +11:00
|
|
|
|
|
|
|
return redirect('/balance-assertions')
|