แก้ ทั้งหมด ส่ง ""

This commit is contained in:
setthawutttty 2024-10-08 10:45:25 +07:00
parent ca5b49d16b
commit a503664b7b
3 changed files with 23 additions and 22 deletions

View file

@ -5,7 +5,7 @@ import { useCounterMixin } from "@/stores/mixin";
import type {
FormPlacementMainData,
OpfillterType,
OpfillterTypeSt,
} from "@/modules/05_placement/interface/request/Main";
import type { FormOrderPlacementMainData } from "@/modules/05_placement/interface/request/Main";
@ -308,45 +308,45 @@ export const useOrderPlacementDataStore = defineStore("placementOrder", () => {
});
export const useTransferDataStore = defineStore("transferDataStore", () => {
const optionStatusProbation = ref<OpfillterType[]>([
const optionStatusProbation = ref<OpfillterTypeSt[]>([
{
id: 0,
id: '',
value: "ทั้งหมด",
},
{
id: 1,
id: '1',
value: "อยู่ระหว่างการทดลองปฏิบัติหน้าที่ราชการ",
},
{
id: 2,
id: '2',
value: "พ้นการทดลองปฏิบัติหน้าที่ราชการ",
},
{
id: 3,
id: '3',
value: "ไม่พ้นการทดลองปฏิบัติหน้าที่ราชการ",
},
{
id: 4,
id: '4',
value: "ยุติการทดลองปฏิบัติหน้าที่ราชการเนื่องจากเปลี่ยนตำแหน่ง",
},
{
id: 5,
id: '5',
value: "ยุติการทดลองปฏิบัติหน้าที่ราชการเนื่องจากลาออก",
},
{
id: 6,
id: '6',
value: "ยุติการทดลองปฏิบัติหน้าที่ราชการเนื่องจากถึงแก่กรรม",
},
{
id: 7,
id: '7',
value: "ขยายระยะเวลาทดลองปฏิบัติหน้าที่ราชการ",
},
{
id: 8,
id: '8',
value: "ส่งรายชื่อไปออกคำสั่ง",
},
{
id: 9,
id: '9',
value: "ออกคำสั่งเสร็จแล้ว",
},
]);