From 6877a629c7d22149cec50a880f34d4f5c0232810 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Sun, 16 Feb 2025 03:02:34 +0100 Subject: [PATCH] fix: bugs --- src/components/ui/CardDescriptor.vue | 7 +- .../Customer/Card/CustomerDescriptorProxy.vue | 2 +- src/pages/Item/Card/ItemDescriptorProxy.vue | 2 +- src/pages/Item/components/ItemProposal.vue | 1 - .../Item/components/ItemProposalProxy.vue | 9 +- src/pages/Ticket/Card/TicketDescriptor.vue | 1 + .../Ticket/Card/TicketDescriptorProxy.vue | 2 +- src/pages/Ticket/Negative/TicketLackList.vue | 1 - src/pages/Ticket/Negative/TicketLackTable.vue | 7 +- src/pages/Zone/Card/ZoneDescriptorProxy.vue | 9 +- .../ticket/negative/TicketLackDetail.spec.js | 255 ++++++++++-------- .../ticket/negative/TicketLackList.spec.js | 26 +- 12 files changed, 165 insertions(+), 157 deletions(-) diff --git a/src/components/ui/CardDescriptor.vue b/src/components/ui/CardDescriptor.vue index e6e7e6fa0..2f4632b7d 100644 --- a/src/components/ui/CardDescriptor.vue +++ b/src/components/ui/CardDescriptor.vue @@ -10,6 +10,10 @@ import { useClipboard } from 'src/composables/useClipboard'; import VnMoreOptions from './VnMoreOptions.vue'; const $props = defineProps({ + id: { + type: Number, + default: null, + }, url: { type: String, default: '', @@ -67,7 +71,8 @@ onBeforeMount(async () => { }); // It enables to load data only once if the module is the same as the dataKey - if (!isSameDataKey.value || !route.params.id) await getData(); + if (!isSameDataKey.value || !route.params.id || $props.id !== route.params.id) + await getData(); watch( () => [$props.url, $props.filter], async () => { diff --git a/src/pages/Customer/Card/CustomerDescriptorProxy.vue b/src/pages/Customer/Card/CustomerDescriptorProxy.vue index 9f67d02ec..d9448a322 100644 --- a/src/pages/Customer/Card/CustomerDescriptorProxy.vue +++ b/src/pages/Customer/Card/CustomerDescriptorProxy.vue @@ -11,7 +11,7 @@ const $props = defineProps({ diff --git a/src/pages/Item/Card/ItemDescriptorProxy.vue b/src/pages/Item/Card/ItemDescriptorProxy.vue index f686e8221..19ac15919 100644 --- a/src/pages/Item/Card/ItemDescriptorProxy.vue +++ b/src/pages/Item/Card/ItemDescriptorProxy.vue @@ -22,7 +22,7 @@ const $props = defineProps({ });