diff --git a/src/components/TransferInvoiceForm.vue b/src/components/TransferInvoiceForm.vue index c79c23741..f69bf6b83 100644 --- a/src/components/TransferInvoiceForm.vue +++ b/src/components/TransferInvoiceForm.vue @@ -29,15 +29,10 @@ const transferInvoiceParams = reactive({ refFk: $props.invoiceOutData?.ref, }); -const closeButton = ref(null); const rectificativeTypeOptions = ref([]); const siiTypeInvoiceOutsOptions = ref([]); const invoiceCorrectionTypesOptions = ref([]); -const closeForm = () => { - if (closeButton.value) closeButton.value.click(); -}; - const selectedClient = (client) => { transferInvoiceParams.selectedClientData = client; };