0
0
Fork 0

add filter: refs #6606

This commit is contained in:
Jorge Penadés 2024-01-02 11:38:43 +01:00
parent a6484964dd
commit 9b069fbddd
2 changed files with 24 additions and 10 deletions

View File

@ -174,7 +174,23 @@ const columns = ref([
]); ]);
const downloadCSV = async () => { const downloadCSV = async () => {
await invoiceOutGlobalStore.getNegativeBasesCsv(dateRange.from, dateRange.to); const params = filter.value;
const filterParams = {
limit: 20,
where: {
and: [],
},
};
for (const param in params) {
if (params[param]) filterParams.where.and.push({ [param]: params[param] });
}
await invoiceOutGlobalStore.getNegativeBasesCsv(
dateRange.from,
dateRange.to,
JSON.stringify(filterParams)
);
}; };
const search = async () => { const search = async () => {
@ -187,13 +203,13 @@ const search = async () => {
} }
}); });
const searchFilter = { const searchFilter = {
limit: 20 limit: 20,
} };
if (and.length) { if (and.length) {
searchFilter.where = { searchFilter.where = {
and and,
} };
} }
const params = { const params = {
@ -230,9 +246,7 @@ const selectWorkerId = (id) => {
selectedWorkerId.value = id; selectedWorkerId.value = id;
}; };
onMounted(async () => { onMounted(() => refresh());
refresh();
});
</script> </script>
<template> <template>

View File

@ -219,9 +219,9 @@ export const useInvoiceOutGlobalStore = defineStore({
throw err; throw err;
}, },
async getNegativeBasesCsv(from, to) { async getNegativeBasesCsv(from, to, filter = {}) {
try { try {
const params = { from: from, to: to }; const params = { from: from, to: to, filter };
const CSVResponse = await invoiceOutService.getNegativeBasesCsv(params); const CSVResponse = await invoiceOutService.getNegativeBasesCsv(params);
if (CSVResponse.data && CSVResponse.data.error) throw new Error(); if (CSVResponse.data && CSVResponse.data.error) throw new Error();