ผังบัญชีค่าจ้างลูกจ้างประจำ

This commit is contained in:
setthawutttty 2024-03-15 16:01:34 +07:00
parent 7fe32bc723
commit 5d5051ef84
4 changed files with 269 additions and 102 deletions

View file

@ -2,8 +2,8 @@ import env from "../index";
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`;
const salaryFormula = `${env.API_URI}/salary/formula`;
export default {
salaryChart: salary,
@ -45,5 +45,8 @@ export default {
salaryEmployeeRateListByid: (id: string) => `${salaryRate}/employee/${id}`,
salaryEmployeePosType:()=>`${salaryOrg}/pos/type`,
salaryEmployeePositionType:(key:string)=>`${salaryOrg}/pos/position?keyword=${key}&type=positionType`
salaryFormula:()=>`${salaryFormula}`,
salaryFormulaById:(id:string)=>`${salaryFormula}/${id}`,
salaryEmployeePositionType:(key:string)=>`${salaryOrg}/pos/position?keyword=${key}&type=positionType`,
salaryEmployeeActive :()=>`${salary}/employee/active`
};