fix: refs #8115 fix parking print
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Pau Rovira 2025-04-30 15:50:00 +02:00
parent e5f354fbb9
commit de6bd9bb9a
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ const columns = computed(() => [
]); ]);
function openPdf(id) { function openPdf(id) {
openReport(`Parkings/${id}/download`); openReport(`Parkings/downloadPdf`, { ids: id });
} }
function downloadPdf() { function downloadPdf() {
@ -89,7 +89,7 @@ function downloadPdf() {
ids: parkingIds, ids: parkingIds,
}; };
openReport(`Parkings/downloadZip`, params); openReport(`Parkings/downloadPdf`, params);
} }
} }
</script> </script>