From e7f1ca332efe48749bec92be46c7a9d5bbdfeb50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Thu, 9 Mar 2023 17:32:22 +0800 Subject: [PATCH] Revised the imports in the modules of ledger, income and expenses log, trial balance, and income statement. --- src/accounting/report/reports/income_expenses.py | 2 +- src/accounting/report/reports/income_statement.py | 2 +- src/accounting/report/reports/ledger.py | 2 +- src/accounting/report/reports/trial_balance.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/accounting/report/reports/income_expenses.py b/src/accounting/report/reports/income_expenses.py index 9db70c0..88f0b3d 100644 --- a/src/accounting/report/reports/income_expenses.py +++ b/src/accounting/report/reports/income_expenses.py @@ -33,11 +33,11 @@ from accounting.utils.pagination import Pagination from .utils.base_page_params import BasePageParams from .utils.base_report import BaseReport from .utils.csv_export import BaseCSVRow, csv_download, period_spec -from .utils.urls import income_expenses_url from .utils.option_link import OptionLink from .utils.period_choosers import IncomeExpensesPeriodChooser from .utils.report_chooser import ReportChooser from .utils.report_type import ReportType +from .utils.urls import income_expenses_url class ReportEntry: diff --git a/src/accounting/report/reports/income_statement.py b/src/accounting/report/reports/income_statement.py index 2363e4f..abb1895 100644 --- a/src/accounting/report/reports/income_statement.py +++ b/src/accounting/report/reports/income_statement.py @@ -30,11 +30,11 @@ from accounting.report.period import Period from .utils.base_page_params import BasePageParams from .utils.base_report import BaseReport from .utils.csv_export import BaseCSVRow, csv_download, period_spec -from .utils.urls import ledger_url, income_statement_url from .utils.option_link import OptionLink from .utils.period_choosers import IncomeStatementPeriodChooser from .utils.report_chooser import ReportChooser from .utils.report_type import ReportType +from .utils.urls import ledger_url, income_statement_url class ReportAccount: diff --git a/src/accounting/report/reports/ledger.py b/src/accounting/report/reports/ledger.py index 3b162e0..1d3a7b5 100644 --- a/src/accounting/report/reports/ledger.py +++ b/src/accounting/report/reports/ledger.py @@ -32,11 +32,11 @@ from accounting.utils.pagination import Pagination from .utils.base_page_params import BasePageParams from .utils.base_report import BaseReport from .utils.csv_export import BaseCSVRow, csv_download, period_spec -from .utils.urls import ledger_url from .utils.option_link import OptionLink from .utils.period_choosers import LedgerPeriodChooser from .utils.report_chooser import ReportChooser from .utils.report_type import ReportType +from .utils.urls import ledger_url class ReportEntry: diff --git a/src/accounting/report/reports/trial_balance.py b/src/accounting/report/reports/trial_balance.py index 1944548..e99336e 100644 --- a/src/accounting/report/reports/trial_balance.py +++ b/src/accounting/report/reports/trial_balance.py @@ -29,11 +29,11 @@ from accounting.report.period import Period from .utils.base_page_params import BasePageParams from .utils.base_report import BaseReport from .utils.csv_export import BaseCSVRow, csv_download, period_spec -from .utils.urls import ledger_url, trial_balance_url from .utils.option_link import OptionLink from .utils.period_choosers import TrialBalancePeriodChooser from .utils.report_chooser import ReportChooser from .utils.report_type import ReportType +from .utils.urls import ledger_url, trial_balance_url class ReportAccount: