Merge branch 'develop' into devTee
# Conflicts: # src/api/13_salary/api.salary.ts
This commit is contained in:
commit
490fa72f34
34 changed files with 749 additions and 1429 deletions
|
|
@ -77,4 +77,9 @@ export default {
|
|||
orgPosMasterByIdEmp: (id: string) => `${orgEmployeePos}/master/${id}`,
|
||||
orgPosMasterListEmp: `${orgEmployeePos}/master/list`,
|
||||
orgPosMasterEmp: `${orgEmployeePos}/master`,
|
||||
orgPosSortEmp: `${orgEmployeePos}/sort`,
|
||||
orgPosPositionEmpById: (id: string) => `${orgEmployeePos}/position/${id}`,
|
||||
orgPosMoveEmp: `${orgEmployeePos}/move`,
|
||||
orgProfileEmp: `${orgEmployeePos}/profile`,
|
||||
orgSearchProfileEmp: `${orgProfile}-employee/search`,
|
||||
};
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ export default {
|
|||
salaryRateListByid: (id: string) => `${salaryRate}/${id}`,
|
||||
salaryReportByid: (id: string) => `${salary}/report/${id}`,
|
||||
salaryPeriod: () => `${salary}/period`,
|
||||
salaryPeriodActive: () => `${salary}/period/active`,
|
||||
|
||||
/** รายการเงินเดือน*/
|
||||
keycloakPositionByid: (id: string) =>
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ export default {
|
|||
insigniaOrg,
|
||||
insigniaTypeOrg,
|
||||
insigniaTypeNewOrg: `${insigniaOrg}`,
|
||||
insigniaTypeNewIdOrg: (id: string) => `${insigniaOrg}${id}`,
|
||||
insigniaTypeNewIdOrg: (id: string) => `${insigniaTypeOrg}${id}`,
|
||||
insigniaNewIdOrg: (id: string) => `${insigniaOrg}${id}`,
|
||||
insigniaSortOrg: (id: string) => `${insigniaOrg}sort/${id}`,
|
||||
};
|
||||
|
|
|
|||
14
src/api/registry/api.registry.ts
Normal file
14
src/api/registry/api.registry.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import env from "../index";
|
||||
|
||||
const registryNew = `${env.API_URI}/org/profile/`;
|
||||
|
||||
export default {
|
||||
registryNew,
|
||||
profileNewInsign: `${registryNew}insignia`,
|
||||
profileNewInsignByProfileId: (profileId: string) =>
|
||||
`${registryNew}insignia/${profileId}`,
|
||||
profileNewInsignByInsignId: (insignId: string) =>
|
||||
`${registryNew}insignia/${insignId}`,
|
||||
profileNewInsignHisByInsignId: (insignId: string) =>
|
||||
`${registryNew}insignia/history/${insignId}`,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue