fix bug เงินเดือน

This commit is contained in:
Warunee Tamkoo 2024-03-19 09:23:00 +07:00
parent d9b8b4f864
commit eaf61923b7
2 changed files with 2 additions and 2 deletions

View file

@ -238,7 +238,7 @@ function fetchDataPeriod(id: string) {
pageSize: formFilter.pageSize.toString(),
keyword: formFilter.keyword,
type: store.tabType === "RETIRE" ? "" : store.tabType,
isRetire: store.tabType === "RETIRE" ? true : null,
isRetire: store.tabType === "RETIRE" ? "1" : null,
};
http

View file

@ -263,7 +263,7 @@ function fetchDataPeriod(id: string) {
pageSize: formFilter.pageSize.toString(),
keyword: formFilter.keyword,
type: store.tabType === "RETIRE" ? "" : store.tabType,
isRetire: store.tabType === "RETIRE" ? true : null,
isRetire: store.tabType === "RETIRE" ? "1" : null,
};
http