fix จัดการรอบคัดเลือก

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-01-07 10:38:24 +07:00
parent e1bde59ece
commit 33e521facc
2 changed files with 198 additions and 93 deletions

View file

@ -35,6 +35,8 @@ export default {
orgPosPositionExecutive: () => `${orgPos}/position/executive`,
orgPosExecutive: `${orgPos}/executive`,
orgPosType: `${orgPos}/type`,
orgPosTypeSearch: `${orgPos}/position/search`,
orgPosTypeId: (id: string) => `${orgPos}/type/${id}`,
orgPosLevel: `${orgPos}/level`,
orgPosMaster: `${orgPos}/master`,
@ -66,7 +68,8 @@ export default {
// ค้นหาคนตามเงื่อนไข
orgSearchPersonal: () => `${organization}/profile/search-personal`,
orgSearchPersonalByType: (type:string) => `${organization}/profile${type}/search-personal`,
orgSearchPersonalByType: (type: string) =>
`${organization}/profile${type}/search-personal`,
/** บรรจุแต่งตั้ง*/
orgPosPlacement: `${orgPos}/placement/search`,
@ -158,5 +161,5 @@ export default {
keycloakLogSSO: `${organization}/keycloak/log/sso`,
reportOrgByType:(type:string)=>`${reportOrg}/registry-${type}`
reportOrgByType: (type: string) => `${reportOrg}/registry-${type}`,
};