fix ==> รายงานบรรจุ แต่งตั้ง ย้าย โอน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-12-11 18:12:42 +07:00
parent 5b944dc593
commit 95ace09cb8
5 changed files with 423 additions and 99 deletions

View file

@ -7,6 +7,7 @@ const evaluate = `${env.API_PROBATION_URI}`;
const appointMain = `${env.API_PROBATION_URI}/appoint`;
const orgProfile = `${env.API_URI}/org`;
const probation = `${env.API_URI}/probation`;
const report = `${env.API_URI}/probation/report`;
export default {
competencyOptions: (personalId: string) =>
@ -87,9 +88,12 @@ export default {
`${orgProfile}/profile/probation/${profileId}`,
appointMain,
appointMainList:(id:string)=>`${appointMain}/list/${id}`,
appointMainList: (id: string) => `${appointMain}/list/${id}`,
orgProfileDirector:`${orgProfile}/profile/commander-director`,
orgProfileDirector: `${orgProfile}/profile/commander-director`,
permissionsCheck:(id:string)=>`${probation}/permissions/${id}`
permissionsCheck: (id: string) => `${probation}/permissions/${id}`,
//รายงาน
probationReport: `${report}`,
};