ปรับเงื่อนไขส่งไปพักราชการ

This commit is contained in:
Warunee Tamkoo 2023-12-01 16:16:45 +07:00
parent 7af8370b08
commit ecc0e97781

View file

@ -175,7 +175,7 @@ const onSubmit = async (id: string) => {
/** ยืนยัน ส่งไปออกคำสั่ง */
const respondentRows = ref<Persons[]>();
async function sentIssue() {
respondentRows.value = await store.rowSent.filter((x) => !x.report); //x.report === false
respondentRows.value = await store.rowSent.filter((x) => x.report === false); //x.report === false
modalPopup.value = true;
}