From bb53d4ef638ff5f6b850db3b2e11a3720356ec37 Mon Sep 17 00:00:00 2001 From: Bright Date: Thu, 3 Apr 2025 13:06:10 +0700 Subject: [PATCH 1/2] =?UTF-8?q?=E0=B8=AA=E0=B8=A3=E0=B9=89=E0=B8=B2?= =?UTF-8?q?=E0=B8=87+=E0=B9=81=E0=B8=81=E0=B9=89=E0=B9=84=E0=B8=82=20?= =?UTF-8?q?=E0=B8=AA=E0=B9=88=E0=B8=87=E0=B8=8A=E0=B8=B7=E0=B9=88=E0=B8=AD?= =?UTF-8?q?=E0=B8=84=E0=B8=B3=E0=B8=AA=E0=B8=B1=E0=B9=88=E0=B8=87=E0=B9=80?= =?UTF-8?q?=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entities/ProfileAssistance.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/entities/ProfileAssistance.ts b/src/entities/ProfileAssistance.ts index 1c92d3f8..568552c0 100644 --- a/src/entities/ProfileAssistance.ts +++ b/src/entities/ProfileAssistance.ts @@ -131,6 +131,7 @@ export class CreateProfileAssistance { refCommandDate?: string | null; commandId?: string | null; isUpload?: boolean | null; + commandName?: string | null; } export class CreateProfileAssistanceEmployee { @@ -143,6 +144,7 @@ export class CreateProfileAssistanceEmployee { refCommandDate?: string | null; commandId?: string | null; isUpload?: boolean | null; + commandName?: string | null; } export type UpdateProfileAssistance = { @@ -154,4 +156,5 @@ export type UpdateProfileAssistance = { isUpload?: boolean | null; refCommandDate?: string | null; commandId?: string | null; + commandName?: string | null; }; From eb2bf96c64ca691e4f9e3a225c134c4dfb613d7c Mon Sep 17 00:00:00 2001 From: Bright Date: Thu, 3 Apr 2025 13:26:53 +0700 Subject: [PATCH 2/2] =?UTF-8?q?fix=20=E0=B8=AB=E0=B8=A5=E0=B8=B1=E0=B8=87?= =?UTF-8?q?=E0=B8=AD=E0=B8=AD=E0=B8=81=E0=B8=84=E0=B8=B3=E0=B8=AA=E0=B8=B1?= =?UTF-8?q?=E0=B9=88=E0=B8=87=E0=B8=AA=E0=B9=88=E0=B8=87=E0=B8=95=E0=B8=B1?= =?UTF-8?q?=E0=B8=A7=E0=B8=81=E0=B8=A5=E0=B8=B1=E0=B8=9A=E0=B8=AA=E0=B8=96?= =?UTF-8?q?=E0=B8=B2=E0=B8=99=E0=B8=B0=E0=B9=84=E0=B8=A1=E0=B9=88=E0=B8=AD?= =?UTF-8?q?=E0=B8=B1=E0=B8=9E=E0=B9=80=E0=B8=94=E0=B8=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/controllers/CommandController.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/controllers/CommandController.ts b/src/controllers/CommandController.ts index 81b4da5c..81b53ecc 100644 --- a/src/controllers/CommandController.ts +++ b/src/controllers/CommandController.ts @@ -3575,6 +3575,7 @@ export class CommandController extends Controller { lastUpdateFullName: req.user.name, createdAt: new Date(), lastUpdatedAt: new Date(), + status: "DONE" }; Object.assign(dataAssis, metaAssis);