Merge branch 'dev' into 6172_transfer_ticket_message_error
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
This commit is contained in:
commit
da00a3f05f
|
@ -174,7 +174,23 @@ const columns = ref([
|
|||
]);
|
||||
|
||||
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 () => {
|
||||
|
@ -187,13 +203,13 @@ const search = async () => {
|
|||
}
|
||||
});
|
||||
const searchFilter = {
|
||||
limit: 20
|
||||
}
|
||||
limit: 20,
|
||||
};
|
||||
|
||||
if (and.length) {
|
||||
searchFilter.where = {
|
||||
and
|
||||
}
|
||||
and,
|
||||
};
|
||||
}
|
||||
|
||||
const params = {
|
||||
|
@ -230,9 +246,7 @@ const selectWorkerId = (id) => {
|
|||
selectedWorkerId.value = id;
|
||||
};
|
||||
|
||||
onMounted(async () => {
|
||||
refresh();
|
||||
});
|
||||
onMounted(() => refresh());
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
|
@ -219,9 +219,9 @@ export const useInvoiceOutGlobalStore = defineStore({
|
|||
throw err;
|
||||
},
|
||||
|
||||
async getNegativeBasesCsv(from, to) {
|
||||
async getNegativeBasesCsv(from, to, filter = {}) {
|
||||
try {
|
||||
const params = { from: from, to: to };
|
||||
const params = { from: from, to: to, filter };
|
||||
const CSVResponse = await invoiceOutService.getNegativeBasesCsv(params);
|
||||
|
||||
if (CSVResponse.data && CSVResponse.data.error) throw new Error();
|
||||
|
|
Loading…
Reference in New Issue