diff --git a/accounting/urls.py b/accounting/urls.py index 1096aea..b0168d8 100644 --- a/accounting/urls.py +++ b/accounting/urls.py @@ -22,6 +22,7 @@ from django.urls import path, register_converter from . import views +from mia_core import views as mia_core_views class TransactionTypeConverter: @@ -43,8 +44,50 @@ urlpatterns = [ path("cash", views.cash_home, name="cash.home"), path("cash//", views.CashReportView.as_view(), name="cash"), + path("cash-summary/", + mia_core_views.todo, name="cash-summary"), + path("ledger//", + mia_core_views.todo, name="ledger"), + path("ledger-summary/", + mia_core_views.todo, name="ledger-summary"), + path("ledger//", + mia_core_views.todo, name="ledger"), + path("ledger-summary/", + mia_core_views.todo, name="ledger-summary"), + path("journal/", + mia_core_views.todo, name="journal"), + path("trial-balance/", + mia_core_views.todo, name="trial-balance"), + path("income-statement/", + mia_core_views.todo, name="income-statement"), + path("balance-sheet/", + mia_core_views.todo, 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//", - views.CashReportView.as_view(), name="transactions.view"), + mia_core_views.todo, name="transactions.view"), path("transactions///edit", - views.CashReportView.as_view(), name="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"), ]