UI รายการการประเมินผลการปฏิบัติราชการระดับบุคคล
This commit is contained in:
parent
d43748e450
commit
0b50e82c5e
19 changed files with 4442 additions and 41 deletions
|
|
@ -2,22 +2,23 @@ import env from "../index";
|
|||
const KPI = `${env.API_URI}/kpi`;
|
||||
const kpiPeriod = `${env.API_URI}/kpi/period`;
|
||||
const kpiEvaluation = `${env.API_URI}/kpi/evaluation`;
|
||||
const kpiUserEvaluation = `${env.API_URI}/kpi/user/evaluation`;
|
||||
const kpiAchievement = `${env.API_URI}/kpi/user/achievement`;
|
||||
const kpiGroup = `${env.API_URI}/kpi/group`;
|
||||
const kpiPlan = `${env.API_URI}/kpi/plan`;
|
||||
const kpiCapacity = `${env.API_URI}/kpi/capacity`;
|
||||
const kpiLink = `${env.API_URI}/kpi/link`;
|
||||
const KpiUser = `${env.API_URI}/kpi/user`;
|
||||
export default {
|
||||
KPI,
|
||||
/** รอบการประเมินผล*/
|
||||
kpiPeriod: `${kpiPeriod}`,
|
||||
kpiPeriod,
|
||||
kpiPeriodById: (id: string) => `${kpiPeriod}/${id}`,
|
||||
kpiEvaluation,
|
||||
|
||||
|
||||
/** role */
|
||||
kpiRoleMainList:`${KPI}/role`,
|
||||
kpiRoleMainList: `${KPI}/role`,
|
||||
|
||||
|
||||
kpiGroup,
|
||||
kpiGroupById: (id: string) => `${kpiGroup}/${id}`,
|
||||
kpiPlan,
|
||||
|
|
@ -27,4 +28,10 @@ export default {
|
|||
kpiCapacity,
|
||||
|
||||
kpiLink,
|
||||
|
||||
kpiUserEvaluation,
|
||||
profilePosition: () => `${env.API_URI}/org/profile/keycloak/position`,
|
||||
kpiAchievement: (type: string) => `${kpiAchievement}/${type}`,
|
||||
kpiAchievementPoint: (type: string) => `${kpiAchievement}/${type}/point`,
|
||||
kpiUserCapacity: `${KpiUser}/capacity`,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue