0
0
Fork 0

Add i18n to negative bases table header

This commit is contained in:
William Buezas 2023-12-18 12:24:13 -03:00
parent 65251f9b13
commit a52e75f51c
1 changed files with 12 additions and 12 deletions

View File

@ -116,70 +116,70 @@ const tableColumnComponents = {
}, },
}; };
const columns = ref([ const columns = computed(() => [
{ {
label: 'company', label: t('invoiceOut.negativeBases.company'),
field: 'company', field: 'company',
name: 'company', name: 'company',
align: 'left', align: 'left',
}, },
{ {
label: 'country', label: t('invoiceOut.negativeBases.country'),
field: 'country', field: 'country',
name: 'country', name: 'country',
align: 'left', align: 'left',
}, },
{ {
label: 'clientId', label: t('invoiceOut.negativeBases.clientId'),
field: 'clientId', field: 'clientId',
name: 'clientId', name: 'clientId',
align: 'left', align: 'left',
}, },
{ {
label: 'client', label: t('invoiceOut.negativeBases.client'),
field: 'clientSocialName', field: 'clientSocialName',
name: 'client', name: 'client',
align: 'left', align: 'left',
}, },
{ {
label: 'amount', label: t('invoiceOut.negativeBases.amount'),
field: 'amount', field: 'amount',
name: 'amount', name: 'amount',
align: 'left', align: 'left',
format: (value) => toCurrency(value), format: (value) => toCurrency(value),
}, },
{ {
label: 'base', label: t('invoiceOut.negativeBases.base'),
field: 'taxableBase', field: 'taxableBase',
name: 'base', name: 'base',
align: 'left', align: 'left',
}, },
{ {
label: 'ticketId', label: t('invoiceOut.negativeBases.ticketId'),
field: 'ticketFk', field: 'ticketFk',
name: 'ticketId', name: 'ticketId',
align: 'left', align: 'left',
}, },
{ {
label: 'active', label: t('invoiceOut.negativeBases.active'),
field: 'isActive', field: 'isActive',
name: 'active', name: 'active',
align: 'left', align: 'left',
}, },
{ {
label: 'hasToInvoice', label: t('invoiceOut.negativeBases.hasToInvoice'),
field: 'hasToInvoice', field: 'hasToInvoice',
name: 'hasToInvoice', name: 'hasToInvoice',
align: 'left', align: 'left',
}, },
{ {
label: 'verifiedData', label: t('invoiceOut.negativeBases.verifiedData'),
field: 'isTaxDataChecked', field: 'isTaxDataChecked',
name: 'verifiedData', name: 'verifiedData',
align: 'left', align: 'left',
}, },
{ {
label: 'comercial', label: t('invoiceOut.negativeBases.comercial'),
field: 'comercialName', field: 'comercialName',
name: 'comercial', name: 'comercial',
align: 'left', align: 'left',