Moved the period and period chooser to the "accounting.report.period" module.

This commit is contained in:
2023-03-09 18:30:33 +08:00
parent c6d55fad1c
commit 1850f9787e
14 changed files with 32 additions and 17 deletions

View File

@ -27,13 +27,12 @@ from sqlalchemy.orm import selectinload
from accounting import db
from accounting.locale import gettext
from accounting.models import Currency, Account, Transaction, JournalEntry
from accounting.report.period import Period, PeriodChooser
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.option_link import OptionLink
from accounting.report.utils.period import Period
from accounting.report.utils.period_chooser import PeriodChooser
from accounting.report.utils.report_chooser import ReportChooser
from accounting.report.utils.report_type import ReportType
from accounting.report.utils.urls import ledger_url