XH_Digital_Management/application/fac_mgnt/urls.py

18 lines
1.1 KiB
Python
Raw Normal View History

from django.urls import path
from .views import *
urlpatterns = [
path('expense_types/', expense_types, name='expense_types'),
path('expense_details/', expense_details, name='expense_details'),
path('group_annual_budget/', group_annual_budget, name='group_annual_budget'),
path('labor_cost_details/', labor_cost_details, name='labor_cost_details'),
path('reimbursement_details/', reimbursement_details, name='reimbursement_details'),
path('bonus_categories/', bonus_categories, name='bonus_categories'),
path('bonus_distribution/', bonus_distribution, name='bonus_distribution'),
path('tax_records/', tax_records, name='tax_records'),
path('electronic_invoice_ledger/', electronic_invoice_ledger, name='electronic_invoice_ledger'),
path('invoice_records/', invoice_records, name='invoice_records'),
path('repayment_records/', repayment_records, name='repayment_records'),
2024-05-29 09:27:39 +08:00
path('employee_commission_details/', employee_commission_details, name='employee_commission_details'),
path('employee_performance/', employee_performance, name='employee_performance')
]