0
0
Fork 0
This commit is contained in:
William Buezas 2024-03-13 09:33:25 -03:00
commit 91bd396eab
1 changed files with 4 additions and 17 deletions

View File

@ -80,21 +80,21 @@ const columns = computed(() => [
name: 'bank', name: 'bank',
}, },
{ {
align: 'left', align: 'right',
field: 'debit', field: 'debit',
format: (value) => value && toCurrency(value), format: (value) => value && toCurrency(value),
label: t('Debit'), label: t('Debit'),
name: 'debit', name: 'debit',
}, },
{ {
align: 'left', align: 'right',
field: 'credit', field: 'credit',
format: (value) => value && toCurrency(value), format: (value) => value && toCurrency(value),
label: t('Havings'), label: t('Havings'),
name: 'havings', name: 'havings',
}, },
{ {
align: 'left', align: 'right',
field: 'balance', field: 'balance',
format: (value) => value && toCurrency(value), format: (value) => value && toCurrency(value),
label: t('Balance'), label: t('Balance'),
@ -242,7 +242,7 @@ const sendEmailAction = () => {
<template #body-cell-conciliated="{ row }"> <template #body-cell-conciliated="{ row }">
<QTd align="center"> <QTd align="center">
<QCheckbox :model-value="row.isConciliate === 1" /> <QCheckbox :model-value="row.isConciliate === 1" disable />
</QTd> </QTd>
</template> </template>
@ -345,19 +345,6 @@ const sendEmailAction = () => {
</QPageSticky> </QPageSticky>
</template> </template>
<style lang="scss" scoped>
.col-content {
border-radius: 4px;
padding: 6px;
}
.dotted-border-btn {
border: 1px dotted var(--vn-label);
&:hover {
border: 1px dotted $primary;
}
}
</style>
<i18n> <i18n>
en: en:
bill: 'N/INV {ref}' bill: 'N/INV {ref}'