diff --git a/src/api/registry/api.registry.ts b/src/api/registry/api.registry.ts index f51e1e8a2..1ef2f4673 100644 --- a/src/api/registry/api.registry.ts +++ b/src/api/registry/api.registry.ts @@ -17,7 +17,14 @@ export default { profileNewHonorByProfileId: (profileId: string) => `${registryNew}honor/${profileId}`, profileNewHonorById: (dataId: string) => `${registryNew}honor/${dataId}`, - profileNewHonorHisById: (dataId: string) => `${registryNew}honor/${dataId}`, + profileNewHonorHisById: (dataId: string) => `${registryNew}honor/history/${dataId}`, + + // ผลการประเมินการปฏิบัติราชการ + profileNewAssessments: `${registryNew}assessments`, + profileNewAssessmentsByProfileId: (profileId: string) => + `${registryNew}assessments/${profileId}`, + profileNewAssessmentsById: (dataId: string) => `${registryNew}assessments/${dataId}`, + profileNewAssessmentsHisById: (dataId: string) => `${registryNew}assessments/history/${dataId}`, // การฝึกอบรม profileNewTraining: `${registryNew}training`, diff --git a/src/modules/04_registryNew/components/detail/Achievement/04_DeclarationHonor.vue b/src/modules/04_registryNew/components/detail/Achievement/04_DeclarationHonor.vue index 55a82f3c3..5278cec74 100644 --- a/src/modules/04_registryNew/components/detail/Achievement/04_DeclarationHonor.vue +++ b/src/modules/04_registryNew/components/detail/Achievement/04_DeclarationHonor.vue @@ -1,85 +1,58 @@