diff --git a/src/pages/InvoiceOut/InvoiceOutGlobalForm.vue b/src/pages/InvoiceOut/InvoiceOutGlobalForm.vue index 62acd0a79..c61b9f7ff 100644 --- a/src/pages/InvoiceOut/InvoiceOutGlobalForm.vue +++ b/src/pages/InvoiceOut/InvoiceOutGlobalForm.vue @@ -57,18 +57,6 @@ const getStatus = computed({ }, }); -const onFetchCompanies = (companies) => { - companiesOptions.value = [...companies]; -}; - -const onFetchPrinters = (printers) => { - printersOptions.value = [...printers]; -}; - -const onFetchClients = (clients) => { - clientsOptions.value = [...clients]; -}; - onMounted(async () => { await invoiceOutGlobalStore.init(); formData.value = { ...formInitialData.value }; @@ -76,9 +64,13 @@ onMounted(async () => {