XH_Digital_Management/application/fac_mgnt/urls.py

18 lines
888 B
Python
Raw Normal View History

from django.urls import path
from .views import *
urlpatterns = [
2024-05-31 20:17:40 +08:00
path('emp_comm_list/', emp_comm_list_view, name='emp_comm_list'),
path('rep_rec_list/', rep_rec_list_view, name='rep_rec_list'),
path('inv_rec_list/', inv_rec_list_view, name='inv_rec_list'),
path('inv_ledger_list/', inv_ledger_list_view, name='inv_ledger_list'),
path('tax_rec_list/', tax_rec_list_view, name='tax_rec_list'),
path('bns_alloc_list/', bns_alloc_list_view, name='bns_alloc_list'),
path('bns_cat_list/', bns_cat_list_view, name='bns_cat_list'),
path('rbm_detail_list/', rbm_detail_list_view, name='rbm_detail_list'),
path('lcb_list/', lcb_list_view, name='lcb_list'),
path('gpb_list/', gpb_list_view, name='gpb_list'),
path('exp_detail_list/', exp_detail_list_view, name='exp_detail_list'),
path('emp_comm_list/', exp_type_list_view, name='exp_type_list'),
]