From ce25a2ede13d402a0c2fa8f0da255fbcf7693385 Mon Sep 17 00:00:00 2001 From: Bright Date: Tue, 18 Mar 2025 10:25:57 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B8=A3=E0=B8=B2?= =?UTF-8?q?=E0=B8=A2=E0=B8=87=E0=B8=B2=E0=B8=99=E0=B8=AA=E0=B8=A3=E0=B8=B8?= =?UTF-8?q?=E0=B8=9B=E0=B8=88=E0=B8=B3=E0=B8=99=E0=B8=A7=E0=B8=99=E0=B8=9C?= =?UTF-8?q?=E0=B8=A5=E0=B8=87=E0=B8=B2=E0=B8=99=E0=B8=81=E0=B8=B2=E0=B8=A3?= =?UTF-8?q?=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B9=80=E0=B8=A1=E0=B8=B4=E0=B8=99?= =?UTF-8?q?=20(test)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/controllers/ReportController.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/controllers/ReportController.ts b/src/controllers/ReportController.ts index ed38751..4b4f911 100644 --- a/src/controllers/ReportController.ts +++ b/src/controllers/ReportController.ts @@ -60,7 +60,7 @@ export class ReoportController { @Get() async sumaryEvaluationReport( @Query("year") year?: string, - @Query("rootid") rootId?: string, + @Query("rootId") rootId?: string, @Query("nameOrg") nameOrg?: string, ) { try { @@ -77,6 +77,7 @@ export class ReoportController { year: yearInBE, }) .andWhere("evaluation.orgRootId = :rootId", { rootId: rootId }) + // .andWhere("evaluation.rootDnaId = :rootId", { rootId: rootId }) .andWhere("evaluation.step = :step", { step: "DONE" }) .getMany();