diff --git a/src/modules/04_registry/components/Profile.vue b/src/modules/04_registry/components/Profile.vue index e1e50618d..1272fb36d 100644 --- a/src/modules/04_registry/components/Profile.vue +++ b/src/modules/04_registry/components/Profile.vue @@ -771,31 +771,31 @@ const reasonStatus = ref(false); const leaveReason = ref(""); const reasonOptions = ref([ { - id: "retire", + id: "RETIRE", name: "เกษียณอายุราชการ", }, { - id: "resign", + id: "RESIGN", name: "ลาออก", }, { - id: "transfer", + id: "TRANSFER", name: "ให้โอน", }, { - id: "death", + id: "DEATH", name: "ถึงแก่กรรม", }, { - id: "layoff", + id: "LAYOFF", name: "ให้ออก", }, { - id: "discharge", + id: "DISCHARGE", name: "ปลดออก", }, { - id: "dismiss", + id: "DISMISS", name: "ไล่ออก", }, // { @@ -803,7 +803,7 @@ const reasonOptions = ref([ // name: "เปลี่ยนประเภทข้าราชการ", // }, { - id: "other", + id: "OTHER", name: "อื่นๆ", }, ]);