Merge branch 'develop' into dev-tee

This commit is contained in:
setthawutttty 2023-09-01 13:17:25 +07:00
commit 64152f72d9

View file

@ -771,31 +771,31 @@ const reasonStatus = ref<boolean>(false);
const leaveReason = ref<string>("");
const reasonOptions = ref<DataOption[]>([
{
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<DataOption[]>([
// name: "",
// },
{
id: "other",
id: "OTHER",
name: "อื่นๆ",
},
]);