From 65f77b41e6bbc1a6aa0f935c57b922ac547d2efb Mon Sep 17 00:00:00 2001 From: jorgep Date: Wed, 30 Apr 2025 18:39:15 +0200 Subject: [PATCH] fix: refs #8388 enhance fiscalCode formatting in EntryPreAccount --- src/pages/Entry/EntryPreAccount.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Entry/EntryPreAccount.vue b/src/pages/Entry/EntryPreAccount.vue index 7b16a7886..1b9f3222b 100644 --- a/src/pages/Entry/EntryPreAccount.vue +++ b/src/pages/Entry/EntryPreAccount.vue @@ -187,7 +187,7 @@ const columns = computed(() => [ { name: 'fiscalCode', label: t('entry.preAccount.fiscalCode'), - format: ({ fiscalCode }) => t(fiscalCode), + format: ({ fiscalCode }, dashIfEmpty) => t(dashIfEmpty(fiscalCode)), columnFilter: { component: 'select', name: 'fiscalCode',