From 7cd215369f9e4788b92d0d27cc61060050b3384f Mon Sep 17 00:00:00 2001 From: "STW_TTTY\\stwtt" Date: Thu, 26 Sep 2024 09:29:31 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1?= =?UTF-8?q?=E0=B8=95=E0=B8=B1=E0=B8=A7=E0=B9=81=E0=B8=9B=E0=B8=A3=20?= =?UTF-8?q?=E0=B9=80=E0=B8=8A=E0=B9=87=E0=B8=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../05_placement/components/PersonalList/DialogOrders.vue | 8 ++++---- .../05_placement/components/PersonalList/Table.vue | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/modules/05_placement/components/PersonalList/DialogOrders.vue b/src/modules/05_placement/components/PersonalList/DialogOrders.vue index e134d343a..130cb5914 100644 --- a/src/modules/05_placement/components/PersonalList/DialogOrders.vue +++ b/src/modules/05_placement/components/PersonalList/DialogOrders.vue @@ -192,16 +192,16 @@ function filterSelectOrder() { switch (commandType.value) { case "C-PM-01": case "C-PM-02": - return v.typeCommand === "APPOINTED" && v.bmaOfficer === null; + return v.typeCommand === "APPOINTED" && v.bmaOfficerCheck === null; case "C-PM-03": - return v.typeCommand === "APPOINT" && v.bmaOfficer !== null; + return v.typeCommand === "APPOINT" && v.bmaOfficerCheck !== null; case "C-PM-04": - return v.typeCommand === "MOVE" && v.bmaOfficer !== null; + return v.typeCommand === "MOVE" && v.bmaOfficerCheck !== null; case "C-PM-06": - return v.typeCommand === "SLIP" && v.bmaOfficer !== null; + return v.typeCommand === "SLIP" && v.bmaOfficerCheck !== null; default: return []; diff --git a/src/modules/05_placement/components/PersonalList/Table.vue b/src/modules/05_placement/components/PersonalList/Table.vue index 61ba36589..575646092 100644 --- a/src/modules/05_placement/components/PersonalList/Table.vue +++ b/src/modules/05_placement/components/PersonalList/Table.vue @@ -339,6 +339,7 @@ async function getTable() { positionCandidateId: data.positionCandidateId, reportingDate: data.reportingDate, bmaOfficer: convertBmaOfficer(data.bmaOfficer), + bmaOfficerCheck: data.bmaOfficer, statusId: data.statusId, draft: convertDraft(data.draft), typeCommand: data.typeCommand,