forked from verdnatura/salix-front
Merge branch 'PR-CUSTOMER' of https://gitea.verdnatura.es/hyervoni/salix-front-mindshore into PR-CUSTOMER
This commit is contained in:
commit
91bd396eab
|
@ -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}'
|
||||||
|
|
Loading…
Reference in New Issue