From c55530ad1e9a9fda663ca46d8704943cf3cbaade Mon Sep 17 00:00:00 2001 From: jorgep Date: Wed, 27 Nov 2024 10:36:03 +0100 Subject: [PATCH] fix: refs #7936 redirection --- src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue | 16 ++++++++-------- src/pages/InvoiceIn/locale/en.yml | 2 ++ src/pages/InvoiceIn/locale/es.yml | 2 ++ 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue index 10575eb69..40a507722 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue @@ -91,7 +91,7 @@ const routes = reactive({ return { name: 'InvoiceInList', query: { - params: JSON.stringify({ supplierFk: id }), + table: JSON.stringify({ supplierFk: id }), }, }; }, @@ -100,7 +100,7 @@ const routes = reactive({ return { name: 'InvoiceInList', query: { - params: JSON.stringify({ correctedFk: entityId.value }), + table: JSON.stringify({ correctedFk: entityId.value }), }, }; } @@ -355,13 +355,13 @@ const createInvoiceInCorrection = async () => {