หลักเกณฑ์(ยังไม่สมบูรณ์)

This commit is contained in:
setthawutttty 2024-03-14 17:50:02 +07:00
parent 3b76e636db
commit bae6df1f51
4 changed files with 247 additions and 83 deletions

View file

@ -3,6 +3,8 @@ const salary = `${env.API_URI}/salary`;
const salaryRate = `${env.API_URI}/salary/rate`;
const salaryPeriod = `${env.API_URI}/salary/period`;
const salaryOrg = `${env.API_URI}/org/employee`;
export default {
salaryChart: salary,
salaryChartCopy: `${salary}/copy`,
@ -41,4 +43,7 @@ export default {
salaryEmployeeRateList: `${salaryRate}/employee`,
salaryEmployeeRateListByid: (id: string) => `${salaryRate}/employee/${id}`,
salaryEmployeePosType:()=>`${salaryOrg}/pos/type`,
salaryEmployeePositionType:(key:string)=>`${salaryOrg}/pos/position?keyword=${key}&type=positionType`
};