diff --git a/src/api/13_salary/api.salary.ts b/src/api/13_salary/api.salary.ts index 7d2d377c2..ebde4a4bf 100644 --- a/src/api/13_salary/api.salary.ts +++ b/src/api/13_salary/api.salary.ts @@ -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}`, }; diff --git a/src/modules/13_salary/components/salaryEmployeeChart/DialogEmployeeChart.vue b/src/modules/13_salary/components/salaryEmployeeChart/DialogEmployeeChart.vue index 4f819e080..0ccf1fb82 100644 --- a/src/modules/13_salary/components/salaryEmployeeChart/DialogEmployeeChart.vue +++ b/src/modules/13_salary/components/salaryEmployeeChart/DialogEmployeeChart.vue @@ -1,6 +1,8 @@