แก้ไข้ filter ส่งรายชื่อ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-07-28 17:44:08 +07:00
parent 52bb63a285
commit 4f9bf01f95

View file

@ -253,7 +253,7 @@ const getTable = async () => {
: rowsAll.value.filter((x: any) => x.statusId != "CONTAIN");
rowsFilter.value = rows.value.filter(
(e: any) => e.draft == "รอส่งตัว" && e.positionNumber == null
(e: any) => e.draft == "รอส่งตัว" && e.positionNumber !== null
);
console.log(rowsFilter.value);
})