From 2e6963d505e14a1c6fb3886439022cfb4ecaba6f Mon Sep 17 00:00:00 2001 From: jorgep Date: Wed, 2 Apr 2025 11:38:44 +0200 Subject: [PATCH 1/6] refactor: refs #8326 conditionally render vn-card-content based on advancedSummary --- src/pages/Worker/Card/WorkerSummary.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Worker/Card/WorkerSummary.vue b/src/pages/Worker/Card/WorkerSummary.vue index 40787613c00..1da2b7d1188 100644 --- a/src/pages/Worker/Card/WorkerSummary.vue +++ b/src/pages/Worker/Card/WorkerSummary.vue @@ -94,7 +94,7 @@ onBeforeMount(async () => { -
+
Date: Wed, 2 Apr 2025 12:37:16 +0200 Subject: [PATCH 2/6] test: refs #8441 enable invoice deletion test in invoiceInDescriptor.spec.js --- test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js b/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js index fdaa0187666..7058e154ca7 100644 --- a/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js +++ b/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js @@ -13,7 +13,7 @@ describe('InvoiceInDescriptor', () => { cy.validateCheckbox(checkbox, false); }); - it.skip('should delete the invoice properly', () => { + it('should delete the invoice properly', () => { cy.visit('/#/invoice-in/2/summary'); cy.selectDescriptorOption(2); cy.clickConfirm(); From a780786a2c30dfd6452089bda677e1a8188fc4b4 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Wed, 2 Apr 2025 14:27:07 +0200 Subject: [PATCH 3/6] style: select needs filled --- src/pages/Monitor/Ticket/MonitorTicketFilter.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Monitor/Ticket/MonitorTicketFilter.vue b/src/pages/Monitor/Ticket/MonitorTicketFilter.vue index aea47aa0862..1cadd4cb489 100644 --- a/src/pages/Monitor/Ticket/MonitorTicketFilter.vue +++ b/src/pages/Monitor/Ticket/MonitorTicketFilter.vue @@ -198,7 +198,7 @@ const getLocale = (label) => { Date: Wed, 2 Apr 2025 14:39:23 +0200 Subject: [PATCH 4/6] fix: refs #8449 reset pagination in VnLog and bind all attributes in AccountDescriptorProxy --- src/components/common/VnLog.vue | 1 + src/pages/Account/Card/AccountDescriptorProxy.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/common/VnLog.vue b/src/components/common/VnLog.vue index 0f5a162e3e9..e2f18866a45 100644 --- a/src/components/common/VnLog.vue +++ b/src/components/common/VnLog.vue @@ -219,6 +219,7 @@ function filterByRecord(modelLog) { } async function applyFilter(params = {}) { + paginate.value.arrayData.resetPagination(); paginate.value.arrayData.applyFilter({ filter: {}, params: { originFk: route.params.id, ...params }, diff --git a/src/pages/Account/Card/AccountDescriptorProxy.vue b/src/pages/Account/Card/AccountDescriptorProxy.vue index de3220fea32..6a4b3e267eb 100644 --- a/src/pages/Account/Card/AccountDescriptorProxy.vue +++ b/src/pages/Account/Card/AccountDescriptorProxy.vue @@ -6,7 +6,7 @@ import AccountSummary from './AccountSummary.vue'; From 832646638be001f67ad2f1e1b9bd669825ac3d05 Mon Sep 17 00:00:00 2001 From: jorgep Date: Wed, 2 Apr 2025 14:50:17 +0200 Subject: [PATCH 5/6] fix: refs #5835 update ticket references to invoices in InvoiceInDescriptor and localization files --- src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue | 8 ++++---- src/pages/InvoiceIn/locale/en.yml | 1 + src/pages/InvoiceIn/locale/es.yml | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue index 3843f5bf713..a097d961079 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue @@ -26,7 +26,7 @@ const routes = reactive({ getSupplier: (id) => { return { name: 'SupplierCard', params: { id } }; }, - getTickets: (id) => { + getInvoices: (id) => { return { name: 'InvoiceInList', query: { @@ -135,11 +135,11 @@ async function setInvoiceCorrection(id) { - {{ t('globals.ticketList') }} + {{ t('invoiceIn.descriptor.invoices') }}