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('mem_acc//', membership_account_modification_records, name='membership_account_modification_records'), path('mem_acc/add/', add_membership_modification_record, name='add_membership_modification_record'), 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'), # 入库记录相关的URL path('inbound-list/', inbound_list, name='inbound-list'), path('get-inbound/', get_inbound, name='get-inbound'), path('add-inbound/', add_inbound, name='add-inbound'), # 假设已经存在添加入库记录的视图 path('edit-inbound/', edit_inbound, name='edit-inbound'), path('delete-inbound/', delete_inbound, name='delete-inbound'), # 出库记录相关的URL path('outbound-list/', outbound_list, name='outbound_list'), # 假设已经存在获取出库记录列表的视图 path('get-outbound/', get_outbound, name='get-outbound'), path('add-outbound/', add_outbound, name='add-outbound'), # 假设已经存在添加出库记录的视图 path('edit-outbound/', edit_outbound, name='edit-outbound'), path('delete-outbound/', delete_outbound, name='delete-outbound'), path('stored_value_card//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'), ]