XH_Digital_Management/application/rsc_mgnt/urls.py

50 lines
2.8 KiB
Python

from django.urls import path
from application.rsc_mgnt.views import *
urlpatterns = [
path('cg_cat_list/', cg_cat_list_view, name='cg_cat_list'),
path('cg_cat_list/add/', cg_cat_list_add, name='cg_cat_list_add'),
path('cg_cat_list/modify/', cg_cat_list_modify, name='cg_cat_list_modify'),
path('cg_cat_list/delete/', cg_cat_list_delete, name='cg_cat_list_delete'),
path('cg_inv_list/', cg_inv_list_view, name='cg_inv_list'),
path('cg_inv_list/add/', cg_inv_list_add, name='cg_inv_list_add'),
path('cg_inv_list/modify/', cg_inv_list_modify, name='cg_inv_list_modify'),
path('cg_inv_list/delete/', cg_inv_list_delete, name='cg_inv_list_delete'),
path('cmp_phone_reg_list/', cmp_phone_reg_list_view, name='cmp_phone_reg_list'),
path('cmp_phone_reg_list/add/', cmp_phone_reg_list_add, name='cmp_phone_reg_list_add'),
path('cmp_phone_reg_list/modify/', cmp_phone_reg_list_modify, name='cmp_phone_reg_list_modify'),
path('cmp_phone_reg_list/delete/', cmp_phone_reg_list_delete, name='cmp_phone_reg_list_delete'),
path('bv_usage_list/', bv_usage_list_view, name='bv_usage_list'),
path('bv_usage_list/add/', bv_usage_list_add, name='bv_usage_list_add'),
path('bv_usage_list/modify/', bv_usage_list_modify, name='bv_usage_list_modify'),
path('bv_usage_list/delete/', bv_usage_list_delete, name='bv_usage_list_delete'),
path('mem_acc_list/', mem_acc_list_view, name='mem_acc_list'),
path('mem_acc_list/add/', mem_acc_list_add, name='mem_acc_list_add'),
path('mem_acc_list/modify/', mem_acc_list_modify, name='mem_acc_list_modify'),
path('mem_acc_list/delete/', mem_acc_list_delete, name='mem_acc_list_delete'),
path('svc_reg_list/', svc_reg_list_view, name='svc_reg_list'),
path('svc_reg_list/add/', svc_reg_list_add, name='svc_reg_list_add'),
path('svc_reg_list/modify/', svc_reg_list_modify, name='svc_reg_list_modify'),
path('svc_reg_list/delete/', svc_reg_list_delete, name='svc_reg_list_delete'),
path('inbound/', inbound_list, name='inbound-list'),
path('inbound/add/', add_inbound, name='add-inbound'),
path('inbound/edit/<int:inbound_id>/', edit_inbound, name='edit-inbound'),
path('inbound/delete/<int:inbound_id>/', delete_inbound, name='delete-inbound'),
path('outbound/', outbound_list, name='outbound-list'),
path('outbound/add/', add_outbound, name='add-outbound'),
path('outbound/edit/<int:outbound_id>/', edit_outbound, name='edit-outbound'),
path('outbound/delete/<int:outbound_id>/', delete_outbound, name='delete-outbound'),
path('stored_value_card/<int:card_id>/use_records/', stored_value_card_use_records,
name='stored_value_card_use_records'),
path('stored_value_card_use_record/add/', add_stored_value_card_use_record,
name='add_stored_value_card_use_record'),
]