XH_Digital_Management/application/fac_mgnt/urls.py

89 lines
5.3 KiB
Python

from django.urls import path
from .views import *
urlpatterns = [
path('exp_type_list/', exp_type_list_view, name='exp_type_list'),
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('get_repayment_details/<int:repayment_record_id>/', get_repayment_details, name='get_repayment_details'),
path('add_repayment_detail/', add_repayment_detail, name='add_repayment_detail'),
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'),
path('project_commission_list/', project_commission_list_view, name='project_commission_list'),
path('project_commission_add/', project_commission_add, name='project_commission_add'),
path('project_commission_modify/', project_commission_modify, name='project_commission_modify'),
path('project_commission_delete/', project_commission_delete, name='project_commission_delete'),
path('get_employee_commission_details/<int:project_commission_id>/', get_employee_commission_details,
name='get_employee_commission_details'),
path('get_employees/', get_employees, name='get_employees'),
path('get_employee_info/<int:employee_id>/', get_employee_info, name='get_employee_info'),
path('get_performance_score/<int:employee_id>/<int:year>/', get_performance_score,
name='get_performance_score'),
path('add_employee_commission_detail/', add_employee_commission_detail,
name='add_employee_commission_detail'),
path('delete_employee_commission/<int:commission_id>/', delete_employee_commission,
name='delete_employee_commission'),
path('edit_employee_commission_detail/<int:commission_id>/', edit_employee_commission_detail,
name='edit_employee_commission_detail'),
path('get_invoice_records/', get_invoice_records, name='get_invoice_records'),
path('get_repayment_records/', get_repayment_records, name='get_repayment_records'),
]