From df3bbfe5e4f2937b095e80fa065d0046d9eb0ac7 Mon Sep 17 00:00:00 2001 From: jorgep Date: Tue, 11 Mar 2025 13:41:52 +0100 Subject: [PATCH 01/11] fix: refs #8388 update file attachment logic and redirect after invoice creation --- src/components/common/VnDms.vue | 4 +++- src/pages/InvoiceIn/InvoiceInList.vue | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/common/VnDms.vue b/src/components/common/VnDms.vue index 35308c2c4..03f85f855 100644 --- a/src/components/common/VnDms.vue +++ b/src/components/common/VnDms.vue @@ -46,9 +46,11 @@ const dms = ref({}); onMounted(() => { defaultData(); - if (!$props.formInitialData) + if (!$props.formInitialData) { dms.value.description = $props.description ?? t($props.model + 'Description', dms.value); + dms.value.hasFile = false; + } }); function onFileChange(files) { dms.value.hasFileAttached = !!files; diff --git a/src/pages/InvoiceIn/InvoiceInList.vue b/src/pages/InvoiceIn/InvoiceInList.vue index 0960d0d6c..8dbee6501 100644 --- a/src/pages/InvoiceIn/InvoiceInList.vue +++ b/src/pages/InvoiceIn/InvoiceInList.vue @@ -156,7 +156,7 @@ const cols = computed(() => [ :create="{ urlCreate: 'InvoiceIns', title: t('globals.createInvoiceIn'), - onDataSaved: ({ id }) => tableRef.redirect(id), + onDataSaved: ({ id }) => tableRef.redirect(`${id}/basic-data`), formInitialData: { companyFk: user.companyFk, issued: Date.vnNew() }, }" redirect="invoice-in" From 01d1ca83ea12fcb02fd00496438694ee1fcb5d61 Mon Sep 17 00:00:00 2001 From: jorgep Date: Mon, 17 Mar 2025 13:25:40 +0100 Subject: [PATCH 02/11] fix: refs #8388 improve error handling and notification for invoice booking --- src/pages/InvoiceIn/InvoiceInToBook.vue | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/pages/InvoiceIn/InvoiceInToBook.vue b/src/pages/InvoiceIn/InvoiceInToBook.vue index 5bdbe197b..7bb465d70 100644 --- a/src/pages/InvoiceIn/InvoiceInToBook.vue +++ b/src/pages/InvoiceIn/InvoiceInToBook.vue @@ -56,22 +56,21 @@ async function checkToBook(id) { componentProps: { title: t('Are you sure you want to book this invoice?'), message: messages.reduce((acc, msg) => `${acc}

${msg}

`, ''), + promise: () => toBook(id), }, - }).onOk(() => toBook(id)); + }); } async function toBook(id) { - let type = 'positive'; - let message = t('globals.dataSaved'); - + let err; try { await axios.post(`InvoiceIns/${id}/toBook`); store.data.isBooked = true; } catch (e) { - type = 'negative'; - message = t('It was not able to book the invoice'); + err = true; + throw e; } finally { - notify({ type, message }); + if (!err) notify({ type: 'positive', message: t('globals.dataSaved') }); } } From 6546d06f60d62356e86c50d9386a30756b49bab2 Mon Sep 17 00:00:00 2001 From: jorgep Date: Tue, 18 Mar 2025 12:04:54 +0100 Subject: [PATCH 03/11] refactor: refs #8388 update UI feedback --- src/pages/InvoiceIn/Card/InvoiceInDueDay.vue | 36 +++++++++++++++----- src/pages/InvoiceIn/locale/en.yml | 1 + src/pages/InvoiceIn/locale/es.yml | 2 ++ 3 files changed, 31 insertions(+), 8 deletions(-) diff --git a/src/pages/InvoiceIn/Card/InvoiceInDueDay.vue b/src/pages/InvoiceIn/Card/InvoiceInDueDay.vue index 20cc1cc71..59bebcae2 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInDueDay.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInDueDay.vue @@ -25,7 +25,8 @@ const invoiceInFormRef = ref(); const invoiceId = +route.params.id; const filter = { where: { invoiceInFk: invoiceId } }; const areRows = ref(false); -const totals = ref(); +const totalTaxableBase = ref(); +const noMatch = computed(() => totalAmount.value != totalTaxableBase.value); const columns = computed(() => [ { name: 'duedate', @@ -74,9 +75,12 @@ async function insert() { notify(t('globals.dataSaved'), 'positive'); } -onBeforeMount(async () => { - totals.value = (await axios.get(`InvoiceIns/${invoiceId}/getTotals`)).data; -}); +async function setTaxableBase() { + const { data } = await axios.get(`InvoiceIns/${invoiceId}/getTotals`); + totalTaxableBase.value = data.totalTaxableBase; +} + +onBeforeMount(async () => await setTaxableBase());