From 27da57f35ef974bfbffd0ed7896196ea4c5e412a Mon Sep 17 00:00:00 2001 From: Bright Date: Mon, 22 Apr 2024 13:46:47 +0700 Subject: [PATCH] no message --- src/controllers/KpiUserEvaluationController.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/controllers/KpiUserEvaluationController.ts b/src/controllers/KpiUserEvaluationController.ts index 79e8983..c413c5b 100644 --- a/src/controllers/KpiUserEvaluationController.ts +++ b/src/controllers/KpiUserEvaluationController.ts @@ -111,6 +111,8 @@ export class KpiUserEvaluationController extends Controller { } if (kpiUserEvaluation) { + kpiUserEvaluation.lastUpdateUserId = request.user.sub; + kpiUserEvaluation.lastUpdateFullName = request.user.name; this.kpiUserEvalutionRepository.merge(kpiUserEvaluation, requestBody); await this.kpiUserEvalutionRepository.save(kpiUserEvaluation); return new HttpSuccess(kpiUserEvaluation.id)