From f927e9b722e7c470487f4c711ba67aff0fc156f7 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Mon, 19 Aug 2024 14:31:52 +0200 Subject: [PATCH] fix: #6943 fix customerSummaryTable --- .../components/CustomerSummaryTable.vue | 31 +++++++++---------- .../CustomerSummaryTableActions.vue | 10 +++++- 2 files changed, 24 insertions(+), 17 deletions(-) diff --git a/src/pages/Customer/components/CustomerSummaryTable.vue b/src/pages/Customer/components/CustomerSummaryTable.vue index dc9969b61..c25870fd8 100644 --- a/src/pages/Customer/components/CustomerSummaryTable.vue +++ b/src/pages/Customer/components/CustomerSummaryTable.vue @@ -162,7 +162,8 @@ const navigateToticketSummary = (id) => { params: { id }, }); }; -const commonColumns = (col) => ['date', 'state', 'total'].includes(col); +const commonColumns = (col) => + ['date', 'state', 'total', 'route', 'nickname'].includes(col); - - diff --git a/src/pages/Customer/components/CustomerSummaryTableActions.vue b/src/pages/Customer/components/CustomerSummaryTableActions.vue index 6e9038374..154a37d22 100644 --- a/src/pages/Customer/components/CustomerSummaryTableActions.vue +++ b/src/pages/Customer/components/CustomerSummaryTableActions.vue @@ -1,10 +1,12 @@