Merge branch 'develop' into devTee

This commit is contained in:
STW_TTTY\stwtt 2024-06-27 11:17:56 +07:00
commit 5e8c8589cb
14 changed files with 363 additions and 124 deletions

View file

@ -15,11 +15,10 @@ const KpiUser = `${env.API_URI}/kpi/user`;
const kpiAchievement = `${env.API_URI}/kpi/user/achievement`;
const kpiReason = `${env.API_URI}/kpi/reason`;
// const placementKeycloak = `${env.API_URI}/placement/officer/keycloak`;
const placementKeycloak = `${env.API_URI}/placement/officer/profileId`;
// const orgPosition = `${env.API_URI}/org/profile/keycloak/position `;
const orgPosition = `${env.API_URI}/org/profile/profileid/position`;
const orgPosition = `${env.API_URI}/org/profile/profileid/position`;
export default {
kpiPeriod,
kpiEvaluation,
@ -51,9 +50,13 @@ export default {
/**ประเมิน*/
kpiAchievementDevelop: `${kpiAchievement}/development`,
kpiCommentP:(typP:string,type:string,role:string,id:string)=>`${kpiReason}/${typP}/${type}/${role}/${id}`,
kpiCommentP: (typP: string, type: string, role: string, id: string) =>
`${kpiReason}/${typP}/${type}/${role}/${id}`,
placementKeycloak,
orgPosition,
sendToCommander:`${KpiUser}/evaluation/admin/change-status`
sendToCommander: `${KpiUser}/evaluation/admin/change-status`,
sendToSummary: (id: string) => `${kpiEvaluation}/summary/${id}`,
updatePoint: (id: string) => `${kpiEvaluation}/point/${id}`,
openPoint: (id: string) => `${kpiEvaluation}/open/${id}`,
};