แก้วินัยในส่วน status

This commit is contained in:
Warunee Tamkoo 2023-12-24 10:12:38 +07:00
parent b3e0db3da9
commit 0989c8b3c2
2 changed files with 2 additions and 2 deletions

View file

@ -79,7 +79,7 @@ const formData = reactive<FormData>({
description: "",
dateReceived: null,
dateConsideration: null,
offenseDetails: "",
offenseDetails: "NOT_SPECIFIED",
levelConsideration: "",
dateNotification: null,
complaintFrom: "",

View file

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