#7134 SupplierBalance #905

Open
jsegarra wants to merge 46 commits from 7134-supplierBalance into dev
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 100e3b4d72 - Show all commits

View File

@ -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,
},
jsegarra marked this conversation as resolved Outdated

duda
format: ({ invoiceEuros }) => toCurrency(invoiceEuros ?? 0)
esto serviria?

duda `format: ({ invoiceEuros }) => toCurrency(invoiceEuros ?? 0)` esto serviria?
{
align: 'left',
name: 'paymentEuros',
label: t('Havings'),
format: ({ paymentEuros }) => paymentEuros && toCurrency(paymentEuros),
format: ({ paymentEuros }) => toCurrency(paymentEuros),
cardVisible: true,
},
{