Renamed the "accounting.report.utils.period_choosers" module to "accounting.report.utils.period_chooser", because there is only period chooser now.

This commit is contained in:
依瑪貓 2023-03-09 18:14:20 +08:00
parent 0c647d8f21
commit c6d55fad1c
7 changed files with 7 additions and 7 deletions

View File

@ -32,7 +32,7 @@ from accounting.report.utils.csv_export import BaseCSVRow, csv_download, \
period_spec period_spec
from accounting.report.utils.option_link import OptionLink from accounting.report.utils.option_link import OptionLink
from accounting.report.utils.period import Period from accounting.report.utils.period import Period
from accounting.report.utils.period_choosers import PeriodChooser from accounting.report.utils.period_chooser import PeriodChooser
from accounting.report.utils.report_chooser import ReportChooser from accounting.report.utils.report_chooser import ReportChooser
from accounting.report.utils.report_type import ReportType from accounting.report.utils.report_type import ReportType
from accounting.report.utils.urls import ledger_url, balance_sheet_url, \ from accounting.report.utils.urls import ledger_url, balance_sheet_url, \

View File

@ -35,7 +35,7 @@ from accounting.report.utils.income_expense_account import \
IncomeExpensesAccount IncomeExpensesAccount
from accounting.report.utils.option_link import OptionLink from accounting.report.utils.option_link import OptionLink
from accounting.report.utils.period import Period from accounting.report.utils.period import Period
from accounting.report.utils.period_choosers import PeriodChooser from accounting.report.utils.period_chooser import PeriodChooser
from accounting.report.utils.report_chooser import ReportChooser from accounting.report.utils.report_chooser import ReportChooser
from accounting.report.utils.report_type import ReportType from accounting.report.utils.report_type import ReportType
from accounting.report.utils.urls import income_expenses_url from accounting.report.utils.urls import income_expenses_url

View File

@ -32,7 +32,7 @@ from accounting.report.utils.csv_export import BaseCSVRow, csv_download, \
period_spec period_spec
from accounting.report.utils.option_link import OptionLink from accounting.report.utils.option_link import OptionLink
from accounting.report.utils.period import Period from accounting.report.utils.period import Period
from accounting.report.utils.period_choosers import PeriodChooser from accounting.report.utils.period_chooser import PeriodChooser
from accounting.report.utils.report_chooser import ReportChooser from accounting.report.utils.report_chooser import ReportChooser
from accounting.report.utils.report_type import ReportType from accounting.report.utils.report_type import ReportType
from accounting.report.utils.urls import ledger_url, income_statement_url from accounting.report.utils.urls import ledger_url, income_statement_url

View File

@ -31,7 +31,7 @@ from accounting.report.utils.base_report import BaseReport
from accounting.report.utils.csv_export import BaseCSVRow, csv_download, \ from accounting.report.utils.csv_export import BaseCSVRow, csv_download, \
period_spec period_spec
from accounting.report.utils.period import Period from accounting.report.utils.period import Period
from accounting.report.utils.period_choosers import PeriodChooser from accounting.report.utils.period_chooser import PeriodChooser
from accounting.report.utils.report_chooser import ReportChooser from accounting.report.utils.report_chooser import ReportChooser
from accounting.report.utils.report_type import ReportType from accounting.report.utils.report_type import ReportType
from accounting.report.utils.urls import journal_url from accounting.report.utils.urls import journal_url

View File

@ -33,7 +33,7 @@ from accounting.report.utils.csv_export import BaseCSVRow, csv_download, \
period_spec period_spec
from accounting.report.utils.option_link import OptionLink from accounting.report.utils.option_link import OptionLink
from accounting.report.utils.period import Period from accounting.report.utils.period import Period
from accounting.report.utils.period_choosers import PeriodChooser from accounting.report.utils.period_chooser import PeriodChooser
from accounting.report.utils.report_chooser import ReportChooser from accounting.report.utils.report_chooser import ReportChooser
from accounting.report.utils.report_type import ReportType from accounting.report.utils.report_type import ReportType
from accounting.report.utils.urls import ledger_url from accounting.report.utils.urls import ledger_url

View File

@ -31,7 +31,7 @@ from accounting.report.utils.csv_export import BaseCSVRow, csv_download, \
period_spec period_spec
from accounting.report.utils.option_link import OptionLink from accounting.report.utils.option_link import OptionLink
from accounting.report.utils.period import Period from accounting.report.utils.period import Period
from accounting.report.utils.period_choosers import PeriodChooser from accounting.report.utils.period_chooser import PeriodChooser
from accounting.report.utils.report_chooser import ReportChooser from accounting.report.utils.report_chooser import ReportChooser
from accounting.report.utils.report_type import ReportType from accounting.report.utils.report_type import ReportType
from accounting.report.utils.urls import ledger_url, trial_balance_url from accounting.report.utils.urls import ledger_url, trial_balance_url

View File

@ -14,7 +14,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
"""The period choosers. """The period chooser.
This file is largely taken from the NanoParma ERP project, first written in This file is largely taken from the NanoParma ERP project, first written in
2021/9/16 by imacat (imacat@nanoparma.com). 2021/9/16 by imacat (imacat@nanoparma.com).