diff --git a/src/modules/13_salary/components/SalaryEmployeeLists/TabMain.vue b/src/modules/13_salary/components/SalaryEmployeeLists/TabMain.vue index 29e088306..7df603b80 100644 --- a/src/modules/13_salary/components/SalaryEmployeeLists/TabMain.vue +++ b/src/modules/13_salary/components/SalaryEmployeeLists/TabMain.vue @@ -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 diff --git a/src/modules/13_salary/components/SalaryLists/TabMain.vue b/src/modules/13_salary/components/SalaryLists/TabMain.vue index 9f4a54cb9..ffef246fc 100644 --- a/src/modules/13_salary/components/SalaryLists/TabMain.vue +++ b/src/modules/13_salary/components/SalaryLists/TabMain.vue @@ -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