feat: add customer export by status
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s
This commit is contained in:
parent
166211ac25
commit
ff0f0bdde6
1 changed files with 2 additions and 0 deletions
|
|
@ -203,6 +203,7 @@ async function triggerExport() {
|
|||
case 'employer':
|
||||
customerStore.customerExport({
|
||||
pageSize: 10000,
|
||||
status: currentStatus.value === 'All' ? undefined : currentStatus.value,
|
||||
startDate: searchDate.value[0],
|
||||
endDate: searchDate.value[1],
|
||||
businessType: filterBusinessType.value,
|
||||
|
|
@ -222,6 +223,7 @@ async function triggerExport() {
|
|||
case 'employee':
|
||||
employeeStore.employeeExport({
|
||||
pageSize: 10000,
|
||||
status: currentStatus.value === 'All' ? undefined : currentStatus.value,
|
||||
startDate: searchDate.value[0],
|
||||
endDate: searchDate.value[1],
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue