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',
},
{
align: 'left',
align: 'right',
field: 'debit',
format: (value) => value && toCurrency(value),
label: t('Debit'),
name: 'debit',
},
{
align: 'left',
align: 'right',
field: 'credit',
format: (value) => value && toCurrency(value),
label: t('Havings'),
name: 'havings',
},
{
align: 'left',
align: 'right',
field: 'balance',
format: (value) => value && toCurrency(value),
label: t('Balance'),
@ -242,7 +242,7 @@ const sendEmailAction = () => {
<template #body-cell-conciliated="{ row }">
<QTd align="center">
<QCheckbox :model-value="row.isConciliate === 1" />
<QCheckbox :model-value="row.isConciliate === 1" disable />
</QTd>
</template>
@ -345,19 +345,6 @@ const sendEmailAction = () => {
</QPageSticky>
</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>
en:
bill: 'N/INV {ref}'