Merge branch 'develop' into devTee

This commit is contained in:
setthawutttty 2025-02-25 13:55:47 +07:00
commit 18b0a75c8c
7 changed files with 26 additions and 22 deletions

View file

@ -358,7 +358,6 @@ export const useTransferDataStore = defineStore("transferDataStore", () => {
value: "ออกคำสั่งเสร็จแล้ว",
},
]);
const statusOp = ref<DataOptions[]>([]);
const statusMainOp = ref<DataOptions[]>([
{ id: "WAITTING", name: "รอดำเนินการ" },
{ id: "PENDING", name: "เลือกตำแหน่งแล้ว" },
@ -367,6 +366,7 @@ export const useTransferDataStore = defineStore("transferDataStore", () => {
{ id: "REPORT", name: "ส่งรายชื่อไปออกคำสั่ง" },
{ id: "DONE", name: "ออกคำสั่งเสร็จแล้ว" },
]);
const statusOp = ref<DataOptions[]>(statusMainOp.value);
const statusText = (val: string) => {
switch (val) {