From 94278e2f53ee6ebbaf999004d53875da7b655dcf Mon Sep 17 00:00:00 2001 From: jorgep Date: Mon, 18 Dec 2023 15:36:56 +0100 Subject: [PATCH 1/5] refactor: refs #5835 --- src/components/ui/VnLv.vue | 2 +- src/pages/InvoiceIn/Card/InvoiceInSummary.vue | 2 +- src/pages/InvoiceIn/InvoiceInList.vue | 55 ++++++++----------- 3 files changed, 26 insertions(+), 33 deletions(-) diff --git a/src/components/ui/VnLv.vue b/src/components/ui/VnLv.vue index 9a17fca05..e99ec4b05 100644 --- a/src/components/ui/VnLv.vue +++ b/src/components/ui/VnLv.vue @@ -5,7 +5,7 @@ import { dashIfEmpty } from 'src/filters'; const $props = defineProps({ label: { type: String, default: null }, value: { - type: [String, Boolean], + type: [String, Boolean, Number], default: null, }, info: { type: String, default: null }, diff --git a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue index d7039fe3d..6dd8a7ae9 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInSummary.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInSummary.vue @@ -265,7 +265,7 @@ function getLink(param) { -- 2.40.1 From c84aeed202ceedf2b164f796276a686a8b99e579 Mon Sep 17 00:00:00 2001 From: jorgep Date: Mon, 18 Dec 2023 15:39:26 +0100 Subject: [PATCH 2/5] fix test refs #5835 --- test/cypress/integration/invoiceIn/invoiceInList.spec.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/cypress/integration/invoiceIn/invoiceInList.spec.js b/test/cypress/integration/invoiceIn/invoiceInList.spec.js index bd722edab..60d8c5be1 100644 --- a/test/cypress/integration/invoiceIn/invoiceInList.spec.js +++ b/test/cypress/integration/invoiceIn/invoiceInList.spec.js @@ -1,8 +1,8 @@ /// describe('InvoiceInList', () => { const firstCard = '.q-card:nth-child(1)'; - const firstId = - '.q-card:nth-child(1) .list-items > .vn-label-value:first-child > .value > span'; + const firstChipId = + ':nth-child(1) > :nth-child(1) > .justify-between > .flex > .q-chip > .q-chip__content'; const firstDetailBtn = '.q-card:nth-child(1) .q-btn:nth-child(2)'; const summaryHeaders = '.summaryBody .header'; @@ -12,9 +12,10 @@ describe('InvoiceInList', () => { }); it('should redirect on clicking a invoice', () => { - cy.get(firstId) + cy.get(firstChipId) .invoke('text') - .then((id) => { + .then((content) => { + const id = content.substring(4); cy.get(firstCard).click(); cy.url().should('include', `/invoice-in/${id}/summary`); }); -- 2.40.1 From 5b79c2ace91690b666cf68ef85cd8c5aec8ae00b Mon Sep 17 00:00:00 2001 From: jorgep Date: Tue, 19 Dec 2023 14:03:58 +0100 Subject: [PATCH 3/5] fix margin: refs #5835 --- src/pages/InvoiceIn/InvoiceInList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/InvoiceIn/InvoiceInList.vue b/src/pages/InvoiceIn/InvoiceInList.vue index c3ef866cd..3efaec7fc 100644 --- a/src/pages/InvoiceIn/InvoiceInList.vue +++ b/src/pages/InvoiceIn/InvoiceInList.vue @@ -131,11 +131,11 @@ function viewSummary(id) { @click.stop="viewSummary(row.id)" color="primary" type="submit" - style="margin-top: 15px" + class="q-mt-sm" /> Date: Wed, 20 Dec 2023 15:43:09 +0100 Subject: [PATCH 4/5] fix breadcrumbs & header: refs #5835 --- src/components/NavBar.vue | 10 +++++----- src/components/common/VnBreadcrumbs.vue | 4 ++++ src/i18n/es/index.js | 2 +- src/stores/useNavigationStore.js | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index 2368e078e..12366e174 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -24,11 +24,8 @@ const pinnedModulesRef = ref();