From 0989c8b3c22b101f97c9d61df52ae155b68b0b89 Mon Sep 17 00:00:00 2001 From: waruneeta Date: Sun, 24 Dec 2023 10:12:38 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B8=A7=E0=B8=B4?= =?UTF-8?q?=E0=B8=99=E0=B8=B1=E0=B8=A2=E0=B9=83=E0=B8=99=E0=B8=AA=E0=B9=88?= =?UTF-8?q?=E0=B8=A7=E0=B8=99=20status?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/11_discipline/components/1_Complaint/Form.vue | 2 +- .../components/3_InvestigateDisciplinary/EditPage.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/11_discipline/components/1_Complaint/Form.vue b/src/modules/11_discipline/components/1_Complaint/Form.vue index c60901c27..7401c2bef 100644 --- a/src/modules/11_discipline/components/1_Complaint/Form.vue +++ b/src/modules/11_discipline/components/1_Complaint/Form.vue @@ -79,7 +79,7 @@ const formData = reactive({ description: "", dateReceived: null, dateConsideration: null, - offenseDetails: "", + offenseDetails: "NOT_SPECIFIED", levelConsideration: "", dateNotification: null, complaintFrom: "", diff --git a/src/modules/11_discipline/components/3_InvestigateDisciplinary/EditPage.vue b/src/modules/11_discipline/components/3_InvestigateDisciplinary/EditPage.vue index 663e3a2c8..8fea91da7 100644 --- a/src/modules/11_discipline/components/3_InvestigateDisciplinary/EditPage.vue +++ b/src/modules/11_discipline/components/3_InvestigateDisciplinary/EditPage.vue @@ -251,7 +251,7 @@ async function onSubmit(id: string) { /** ยืนยัน ส่งไปออกคำสั่ง */ async function sentIssue() { - respondentRows.value = await store.rowSent.filter((x) => x.report === false && x.isSuspend === 'NEW' && x.isSend === 'NEW'); + respondentRows.value = await store.rowSent.filter((x) => x.isSuspend === 'NEW' && x.isSend === 'NEW'); modalPopup.value = true; }