From 7a8dfab682717ef177dbfdc8e3c3db3b16520ac3 Mon Sep 17 00:00:00 2001 From: jgallego Date: Thu, 13 Mar 2025 10:05:52 +0100 Subject: [PATCH] feat: refs #6802 add dash placeholder for empty department names in InvoiceOut list --- src/pages/InvoiceOut/InvoiceOutList.vue | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/pages/InvoiceOut/InvoiceOutList.vue b/src/pages/InvoiceOut/InvoiceOutList.vue index bd473478b..50c8ddb8f 100644 --- a/src/pages/InvoiceOut/InvoiceOutList.vue +++ b/src/pages/InvoiceOut/InvoiceOutList.vue @@ -8,7 +8,7 @@ import { useSummaryDialog } from 'src/composables/useSummaryDialog'; import { usePrintService } from 'src/composables/usePrintService'; import VnTable from 'src/components/VnTable/VnTable.vue'; import InvoiceOutSummary from './Card/InvoiceOutSummary.vue'; -import { toCurrency, toDate } from 'src/filters/index'; +import { toCurrency, toDate, dashIfEmpty } from 'src/filters/index'; import { QBtn } from 'quasar'; import axios from 'axios'; import InvoiceOutFilter from './InvoiceOutFilter.vue'; @@ -246,12 +246,8 @@ watchEffect(selectedRows);