รายการเลื่อนเงินเดือนลูกจ้างประจำ = > ส่งออกคำสั่ง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-19 14:42:50 +07:00
parent 7d68de4190
commit 9dacfc6835
3 changed files with 21 additions and 7 deletions

View file

@ -26,6 +26,7 @@ export const useSalaryEmployeeListSDataStore = defineStore(
const roundYear = ref<number>(0);
const roundCode = ref<string>("");
const isClosedRound = ref<boolean>(false); // การปิดรอบ
const statusQuota = ref<string>("");
/** List Menu*/
const itemMenu = ref<ItemsMenu[]>([
{
@ -157,6 +158,7 @@ export const useSalaryEmployeeListSDataStore = defineStore(
remaining,
isClosedRound,
roundYear,
statusQuota,
};
}
);