diff --git a/src/pages/Supplier/Card/SupplierBalance.vue b/src/pages/Supplier/Card/SupplierBalance.vue index 65420ee9d..6c1b9281a 100644 --- a/src/pages/Supplier/Card/SupplierBalance.vue +++ b/src/pages/Supplier/Card/SupplierBalance.vue @@ -57,14 +57,14 @@ const columns = computed(() => [ align: 'left', name: 'invoiceEuros', label: t('Debit'), - format: ({ invoiceEuros }) => invoiceEuros && toCurrency(invoiceEuros), + format: ({ invoiceEuros }) => toCurrency(invoiceEuros), isId: true, }, { align: 'left', name: 'paymentEuros', label: t('Havings'), - format: ({ paymentEuros }) => paymentEuros && toCurrency(paymentEuros), + format: ({ paymentEuros }) => toCurrency(paymentEuros), cardVisible: true, }, {