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:
parent
0c647d8f21
commit
c6d55fad1c
@ -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, \
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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).
|
Loading…
Reference in New Issue
Block a user