# The accounting application of the Mia project. # by imacat , 2020/6/30 # Copyright (c) 2020 imacat. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """The route settings of the accounting application. """ from django.urls import path, register_converter from . import views from mia_core import views as mia_core_views class TransactionTypeConverter: """The path converter for the transaction types.""" regex = "income|expense|transfer" def to_python(self, value): return value def to_url(self, value): return value register_converter(TransactionTypeConverter, "txn-type") app_name = "accounting" urlpatterns = [ path("", views.home, name="home"), path("cash", views.cash_home, name="cash.home"), path("cash//", views.cash, name="cash"), path("cash-summary", mia_core_views.todo, name="cash-summary.home"), path("cash-summary/", views.cash_summary, name="cash-summary"), path("ledger", mia_core_views.todo, name="ledger.home"), path("ledger//", views.ledger, name="ledger"), path("ledger-summary", mia_core_views.todo, name="ledger-summary.home"), path("ledger-summary/", views.ledger_summary, name="ledger-summary"), path("journal", mia_core_views.todo, name="journal.home"), path("journal/", views.journal, name="journal"), path("trial-balance", mia_core_views.todo, name="trial-balance.home"), path("trial-balance/", views.trial_balance, name="trial-balance"), path("income-statement", mia_core_views.todo, name="income-statement.home"), path("income-statement/", views.income_statement, name="income-statement"), path("balance-sheet", mia_core_views.todo, name="balance-sheet.home"), path("balance-sheet/", views.balance_sheet, name="balance-sheet"), path("search", mia_core_views.todo, name="search"), path("transactions//create", mia_core_views.todo, name="transactions.create"), path("transactions//store", mia_core_views.todo, name="transactions.store"), path("transactions//", mia_core_views.todo, name="transactions.view"), path("transactions///edit", mia_core_views.todo, name="transactions.edit"), path("transactions///update", mia_core_views.todo, name="transactions.update"), path("transactions//delete", mia_core_views.todo, name="transactions.delete"), path("subjects", mia_core_views.todo, name="subjects"), path("subjects/create", mia_core_views.todo, name="subjects.create"), path("subjects/store", mia_core_views.todo, name="subjects.store"), path("subjects/", mia_core_views.todo, name="subjects.view"), path("subjects//edit", mia_core_views.todo, name="subjects.edit"), path("subjects//update", mia_core_views.todo, name="subjects.update"), path("subjects//delete", mia_core_views.todo, name="subjects.delete"), ]