api ผังบัญชีค่าจ้างลูกจ้างประจำ => บัญชีโครงสร้าง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-13 15:07:10 +07:00
parent 20ad3b34e7
commit 94e5e136e6
9 changed files with 648 additions and 107 deletions

View file

@ -29,5 +29,16 @@ export default {
salaryListPerson: `${env.API_URI}/org/profile/salary/gen`,
salaryPeriodProfile: `${salary}/period/org/profile`,
salaryProperty:(id:string)=> `${salaryPeriod}/org/property/${id}`,
salaryProperty: (id: string) => `${salaryPeriod}/org/property/${id}`,
/** รายการเงินเดือนลูกจ้างประจำ*/
salaryEmployeeChart: `${salary}/employee`,
salaryEmployeeChartByid: (id: string) => `${salary}/employee/${id}`,
salaryEmployeeChartCopy: `${salary}/employee/copy`,
salaryEmployeeChartFile: (id: string) => `${salary}/file/employee/${id}`,
salaryEmployeeChartDelFile: (id: string, fileName: string) =>
`${salary}/file/employee/${id}/${fileName}`,
salaryEmployeeRateList: `${salaryRate}/employee`,
salaryEmployeeRateListByid: (id: string) => `${salaryRate}/employee/${id}`,
};