diff --git a/src/controllers/KpiPlanController.ts b/src/controllers/KpiPlanController.ts index e3dfd54..cfdcd88 100644 --- a/src/controllers/KpiPlanController.ts +++ b/src/controllers/KpiPlanController.ts @@ -243,7 +243,7 @@ export class kpiPlanController extends Controller { .andWhere("kpiPeriod.durationKPI = :durationKPI", { durationKPI: requestBody.period }) .getOne(); if (!kpiPeriod) { - throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลตัวชี้วัดตามตำแหน่งนี้"); + throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลรอบการประเมินนี้"); } } Object.assign(kpiPlan, requestBody);