From f176221839dbdf9a00323ebee7439e3eba6a13b3 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 5 May 2025 10:28:19 +0200 Subject: [PATCH 1/4] fix(ClaimSummary): fix description slot --- src/pages/Claim/Card/ClaimSummary.vue | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/pages/Claim/Card/ClaimSummary.vue b/src/pages/Claim/Card/ClaimSummary.vue index 67d57004f..196d24e07 100644 --- a/src/pages/Claim/Card/ClaimSummary.vue +++ b/src/pages/Claim/Card/ClaimSummary.vue @@ -346,17 +346,18 @@ function claimUrl(section) { From f8e0b9f1fdca569abca1c0593d4f2b4c11701501 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 5 May 2025 10:30:36 +0200 Subject: [PATCH 2/4] fix: revert claimSummary --- src/pages/Claim/Card/ClaimSummary.vue | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/pages/Claim/Card/ClaimSummary.vue b/src/pages/Claim/Card/ClaimSummary.vue index 196d24e07..67d57004f 100644 --- a/src/pages/Claim/Card/ClaimSummary.vue +++ b/src/pages/Claim/Card/ClaimSummary.vue @@ -346,18 +346,17 @@ function claimUrl(section) { From dc8dcdc7916de052ddc7d9c31461887210440cc2 Mon Sep 17 00:00:00 2001 From: benjaminedc Date: Mon, 5 May 2025 10:45:30 +0200 Subject: [PATCH 3/4] fix(ExtraCommunity): refs #8884 set max-width for package and physicKg columns --- src/pages/Travel/ExtraCommunity.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/Travel/ExtraCommunity.vue b/src/pages/Travel/ExtraCommunity.vue index 849eeee5b..afa0663a8 100644 --- a/src/pages/Travel/ExtraCommunity.vue +++ b/src/pages/Travel/ExtraCommunity.vue @@ -182,6 +182,7 @@ const columns = computed(() => [ align: 'left', showValue: false, sortable: true, + style: 'max-width: 200px;', }, { label: t('globals.packages'), @@ -206,6 +207,7 @@ const columns = computed(() => [ align: 'left', showValue: false, sortable: true, + style: 'max-width: 75px;', }, { label: t('extraCommunity.physicKg'), From 2292ab8ad8883cfd6871d900f4ddccf4f45df096 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 5 May 2025 11:09:32 +0200 Subject: [PATCH 4/4] fix(ClaimSummary): fix description slot --- src/pages/Claim/Card/ClaimSummary.vue | 34 +++++++++++---------------- 1 file changed, 14 insertions(+), 20 deletions(-) diff --git a/src/pages/Claim/Card/ClaimSummary.vue b/src/pages/Claim/Card/ClaimSummary.vue index 67d57004f..9eec79d96 100644 --- a/src/pages/Claim/Card/ClaimSummary.vue +++ b/src/pages/Claim/Card/ClaimSummary.vue @@ -54,7 +54,7 @@ const detailsColumns = ref([ { name: 'item', label: 'claim.item', - field: (row) => row.sale.itemFk, + field: (row) => dashIfEmpty(row.sale.itemFk), sortable: true, }, { @@ -67,13 +67,13 @@ const detailsColumns = ref([ { name: 'quantity', label: 'claim.quantity', - field: (row) => row.sale.quantity, + field: (row) => dashIfEmpty(row.sale.quantity), sortable: true, }, { name: 'claimed', label: 'claim.claimed', - field: (row) => row.quantity, + field: (row) => dashIfEmpty(row.quantity), sortable: true, }, { @@ -84,7 +84,7 @@ const detailsColumns = ref([ { name: 'price', label: 'claim.price', - field: (row) => row.sale.price, + field: (row) => dashIfEmpty(row.sale.price), sortable: true, }, { @@ -343,22 +343,16 @@ function claimUrl(section) { -