Shortened the name of the "accounting.report.utils.income_expenses_account" module to "accounting.report.utils.ie_account".

This commit is contained in:
2023-03-09 20:56:34 +08:00
parent e9d1a53e03
commit 20f55058ac
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ def init_app(app: Flask, bp: Blueprint) -> None:
"""
from .converters import PeriodConverter, IncomeExpensesAccountConverter
app.url_map.converters["period"] = PeriodConverter
app.url_map.converters["ioAccount"] = IncomeExpensesAccountConverter
app.url_map.converters["ieAccount"] = IncomeExpensesAccountConverter
from .views import bp as report_bp
bp.register_blueprint(report_bp, url_prefix="/reports")