Revised the imports in the modules of ledger, income and expenses log, trial balance, and income statement.

This commit is contained in:
2023-03-09 17:32:22 +08:00
parent 3d2e40865e
commit e7f1ca332e
4 changed files with 4 additions and 4 deletions

View File

@ -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: