fix Command Emp

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-02-20 16:30:52 +07:00
parent 98bc7cb6ba
commit 475e145223
2 changed files with 5 additions and 3 deletions

View file

@ -108,6 +108,8 @@ export const useRegistryNewDataStore = defineStore("registryNew", () => {
case "PLACEMENT_TRANSFER":
return "โอนออก ";
case "RETIRE_RESIGN_EMP":
return "ลาออก(ลูกจ้าง)";
case "RETIRE_OUT_EMP":
return "ให้ออกจากราชการ(ลูกจ้าง)";
default:
return "";
@ -127,9 +129,9 @@ export const useRegistryNewDataStore = defineStore("registryNew", () => {
const retireTypeEmpOps = ref<DataOption[]>([
{ id: "RETIRE", name: "เกษียณ" },
{ id: "RETIRE_RESIGN", name: "ลาออก" },
{ id: "RETIRE_RESIGN_EMP", name: "ลาออก" },
{ id: "RETIRE_DECEASED", name: "ถึงแก่กรรม" },
{ id: "RETIRE_RESIGN_EMP", name: "ให้ออกจากราชการ" },
{ id: "RETIRE_OUT_EMP", name: "ให้ออกจากราชการ" },
]);
const displayOrderOps = ref<DataOption[]>([

View file

@ -283,7 +283,7 @@ watchEffect(() => {
<DialogCreateCommand
v-model:modal="modalCommand"
:command-type-code="'C-PM-23'"
:command-type-code="'C-PM-43'"
:persons="dataMapToSend"
/>
</template>