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; }