Moved the "accounting.reports.period" and "accounting.reports.income_expense_account" utility modules into the "accounting.reports.utils" module.

This commit is contained in:
2023-03-09 18:13:18 +08:00
parent 5d1f87582e
commit 0c647d8f21
14 changed files with 19 additions and 19 deletions

View File

@ -23,8 +23,8 @@ from flask import abort
from werkzeug.routing import BaseConverter
from accounting.models import Account
from .income_expense_account import IncomeExpensesAccount
from .period import Period
from .utils.income_expense_account import IncomeExpensesAccount
from .utils.period import Period
class PeriodConverter(BaseConverter):