Added the journal report as the first accounting report.

This commit is contained in:
2023-03-04 18:29:00 +08:00
parent 55c2ce6695
commit 9bfcd3c50c
16 changed files with 1956 additions and 7 deletions

View File

@ -89,4 +89,7 @@ def init_app(app: Flask, user_utils: AbstractUserUtils,
from . import transaction
transaction.init_app(app, bp)
from . import report
report.init_app(app, bp)
app.register_blueprint(bp)