From ac84537e19e425536ccd8bc82010da0c2ca24fd6 Mon Sep 17 00:00:00 2001 From: Jon Date: Thu, 6 Mar 2025 13:49:32 +0100 Subject: [PATCH] refactor: refs #8606 clear some warnings --- src/components/TransferInvoiceForm.vue | 5 ++--- src/pages/InvoiceOut/InvoiceOutList.vue | 3 +-- src/pages/InvoiceOut/InvoiceOutNegativeBasesFilter.vue | 2 +- src/pages/Zone/Card/ZoneEventInclusionForm.vue | 1 - src/pages/Zone/Card/ZoneEventsPanel.vue | 3 +-- src/pages/Zone/ZoneDeliveryPanel.vue | 2 +- 6 files changed, 6 insertions(+), 10 deletions(-) diff --git a/src/components/TransferInvoiceForm.vue b/src/components/TransferInvoiceForm.vue index c4ef1454ad..1434b79bcd 100644 --- a/src/components/TransferInvoiceForm.vue +++ b/src/components/TransferInvoiceForm.vue @@ -87,7 +87,7 @@ const makeInvoice = async () => { (data) => ( (rectificativeTypeOptions = data), (transferInvoiceParams.cplusRectificationTypeFk = data.filter( - (type) => type.description == 'I – Por diferencias' + (type) => type.description == 'I – Por diferencias', )[0].id) ) " @@ -100,7 +100,7 @@ const makeInvoice = async () => { (data) => ( (siiTypeInvoiceOutsOptions = data), (transferInvoiceParams.siiTypeInvoiceOutFk = data.filter( - (type) => type.code == 'R4' + (type) => type.code == 'R4', )[0].id) ) " @@ -122,7 +122,6 @@ const makeInvoice = async () => {