diff --git a/src/accounting/report/converters.py b/src/accounting/report/converters.py index 8611bc6..64ccf00 100644 --- a/src/accounting/report/converters.py +++ b/src/accounting/report/converters.py @@ -24,7 +24,7 @@ from werkzeug.routing import BaseConverter from accounting.models import Account from .period import Period, get_period -from .utils.income_expense_account import IncomeExpensesAccount +from .utils.ie_account import IncomeExpensesAccount class PeriodConverter(BaseConverter): diff --git a/src/accounting/report/reports/income_expenses.py b/src/accounting/report/reports/income_expenses.py index 6a3a831..f91c36a 100644 --- a/src/accounting/report/reports/income_expenses.py +++ b/src/accounting/report/reports/income_expenses.py @@ -32,8 +32,7 @@ from accounting.report.utils.base_page_params import BasePageParams from accounting.report.utils.base_report import BaseReport from accounting.report.utils.csv_export import BaseCSVRow, csv_download, \ period_spec -from accounting.report.utils.income_expense_account import \ - IncomeExpensesAccount +from accounting.report.utils.ie_account import IncomeExpensesAccount from accounting.report.utils.option_link import OptionLink from accounting.report.utils.report_chooser import ReportChooser from accounting.report.utils.report_type import ReportType diff --git a/src/accounting/report/utils/report_chooser.py b/src/accounting/report/utils/report_chooser.py index 46172dd..cfdc6b3 100644 --- a/src/accounting/report/utils/report_chooser.py +++ b/src/accounting/report/utils/report_chooser.py @@ -30,7 +30,7 @@ from accounting.locale import gettext from accounting.models import Currency, Account from accounting.report.period import Period, get_period from accounting.template_globals import default_currency_code -from .income_expense_account import IncomeExpensesAccount +from .ie_account import IncomeExpensesAccount from .option_link import OptionLink from .report_type import ReportType from .urls import journal_url, ledger_url, income_expenses_url, \ diff --git a/src/accounting/report/utils/urls.py b/src/accounting/report/utils/urls.py index d8ae3f3..dcb8889 100644 --- a/src/accounting/report/utils/urls.py +++ b/src/accounting/report/utils/urls.py @@ -22,8 +22,7 @@ from flask import url_for from accounting.models import Currency, Account from accounting.report.period import Period from accounting.template_globals import default_currency_code -from .income_expense_account import IncomeExpensesAccount, \ - default_io_account_code +from .ie_account import IncomeExpensesAccount, default_io_account_code def journal_url(period: Period) \ diff --git a/src/accounting/report/views.py b/src/accounting/report/views.py index 678495f..cfabb25 100644 --- a/src/accounting/report/views.py +++ b/src/accounting/report/views.py @@ -27,8 +27,7 @@ from accounting.utils.permission import has_permission, can_view from .reports import Journal, Ledger, IncomeExpenses, TrialBalance, \ IncomeStatement, BalanceSheet, Search from .template_filters import format_amount -from .utils.income_expense_account import IncomeExpensesAccount, \ - default_io_account +from .utils.ie_account import IncomeExpensesAccount, default_io_account bp: Blueprint = Blueprint("report", __name__) """The view blueprint for the reports."""