XH_Digital_Management/application/fac_mgnt/urls.py

66 lines
3.7 KiB
Python
Raw Normal View History

from django.urls import path
from .views import *
urlpatterns = [
2024-06-04 16:50:30 +08:00
path('exp_type_list/', exp_type_list_view, name='exp_type_list'),
2024-06-06 15:08:38 +08:00
path('exp_type_list/add/', exp_type_list_add, name='exp_type_list_add'),
path('exp_type_list/modify/', exp_type_list_modify, name='exp_type_list_modify'),
path('exp_type_list/delete/', exp_type_list_delete, name='exp_type_list_delete'),
path('exp_detail_list/', exp_detail_list_view, name='exp_detail_list'),
path('exp_detail_list/add/', exp_detail_list_add, name='exp_detail_list_add'),
path('exp_detail_list/modify/', exp_detail_list_modify, name='exp_detail_list_modify'),
path('exp_detail_list/delete/', exp_detail_list_delete, name='exp_detail_list_delete'),
path('gpb_list/', gpb_list_view, name='gpb_list'),
path('gpb_list/add/', gpb_list_add, name='gpb_list_add'),
path('gpb_list/modify/', gpb_list_modify, name='gpb_list_modify'),
path('gpb_list/delete/', gpb_list_delete, name='gpb_list_delete'),
path('lcb_list/', lcb_list_view, name='lcb_list'),
path('lcb_list/add/', lcb_list_add, name='lcb_list_add'),
path('lcb_list/modify/', lcb_list_modify, name='lcb_list_modify'),
path('lcb_list/delete/', lcb_list_delete, name='lcb_list_delete'),
path('rbm_detail_list/', rbm_detail_list_view, name='rbm_detail_list'),
path('rbm_detail_list/add/', rbm_detail_list_add, name='rbm_detail_list_add'),
path('rbm_detail_list/modify/', rbm_detail_list_modify, name='rbm_detail_list_modify'),
path('rbm_detail_list/delete/', rbm_detail_list_delete, name='rbm_detail_list_delete'),
path('bns_cat_list/', bns_cat_list_view, name='bns_cat_list'),
path('bns_cat_list/add/', bns_cat_list_add, name='bns_cat_list_add'),
path('bns_cat_list/modify/', bns_cat_list_modify, name='bns_cat_list_modify'),
path('bns_cat_list/delete/', bns_cat_list_delete, name='bns_cat_list_delete'),
path('bns_alloc_list/', bns_alloc_list_view, name='bns_alloc_list'),
path('bns_alloc_list/add/', bns_alloc_list_add, name='bns_alloc_list_add'),
path('bns_alloc_list/modify/', bns_alloc_list_modify, name='bns_alloc_list_modify'),
path('bns_alloc_list/delete/', bns_alloc_list_delete, name='bns_alloc_list_delete'),
path('tax_rec_list/', tax_rec_list_view, name='tax_rec_list'),
path('tax_rec_list/add/', tax_rec_list_add, name='tax_rec_list_add'),
path('tax_rec_list/modify/', tax_rec_list_modify, name='tax_rec_list_modify'),
path('tax_rec_list/delete/', tax_rec_list_delete, name='tax_rec_list_delete'),
path('inv_ledger_list/', inv_ledger_list_view, name='inv_ledger_list'),
path('inv_ledger_list/add/', inv_ledger_list_add, name='inv_ledger_list_add'),
path('inv_ledger_list/modify/', inv_ledger_list_modify, name='inv_ledger_list_modify'),
path('inv_ledger_list/delete/', inv_ledger_list_delete, name='inv_ledger_list_delete'),
path('inv_rec_list/', inv_rec_list_view, name='inv_rec_list'),
path('inv_rec_list/add/', inv_rec_list_add, name='inv_rec_list_add'),
path('inv_rec_list/modify/', inv_rec_list_modify, name='inv_rec_list_modify'),
path('inv_rec_list/delete/', inv_rec_list_delete, name='inv_rec_list_delete'),
path('rep_rec_list/', rep_rec_list_view, name='rep_rec_list'),
path('rep_rec_list/add/', rep_rec_list_add, name='rep_rec_list_add'),
path('rep_rec_list/modify/', rep_rec_list_modify, name='rep_rec_list_modify'),
path('rep_rec_list/delete/', rep_rec_list_delete, name='rep_rec_list_delete'),
path('emp_comm_list/', emp_comm_list_view, name='emp_comm_list'),
path('emp_comm_list/add/', emp_comm_list_add, name='emp_comm_list_add'),
path('emp_comm_list/modify/', emp_comm_list_modify, name='emp_comm_list_modify'),
path('emp_comm_list/delete/', emp_comm_list_delete, name='emp_comm_list_delete'),
2024-05-31 20:17:40 +08:00
2024-06-06 15:08:38 +08:00
]