This commit is contained in:
parent
eb373f10b3
commit
10548a00d2
|
@ -115,6 +115,7 @@ async function setTaxableBase() {
|
||||||
onBeforeMount(async () => await setTaxableBase());
|
onBeforeMount(async () => await setTaxableBase());
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
|
<div class="invoice-in-due-day">
|
||||||
<VnTable
|
<VnTable
|
||||||
v-if="invoiceIn"
|
v-if="invoiceIn"
|
||||||
ref="invoiceInDueDayTableRef"
|
ref="invoiceInDueDayTableRef"
|
||||||
|
@ -139,18 +140,6 @@ onBeforeMount(async () => await setTaxableBase());
|
||||||
:disable-option="{ card: true }"
|
:disable-option="{ card: true }"
|
||||||
class="q-pa-none"
|
class="q-pa-none"
|
||||||
>
|
>
|
||||||
<!-- <template #column-foreignValue="{ row }">
|
|
||||||
<VnInputNumber
|
|
||||||
:class="{
|
|
||||||
'no-pointer-events': !isNotEuro(currency),
|
|
||||||
}"
|
|
||||||
:disable="!isNotEuro(currency)"
|
|
||||||
v-model="row.foreignValue"
|
|
||||||
dense
|
|
||||||
borderless
|
|
||||||
hide-bottom-space
|
|
||||||
/>
|
|
||||||
</template> -->
|
|
||||||
<template #column-footer-amount>
|
<template #column-footer-amount>
|
||||||
<QChip
|
<QChip
|
||||||
dense
|
dense
|
||||||
|
@ -200,11 +189,21 @@ onBeforeMount(async () => await setTaxableBase());
|
||||||
{{ t('Create due day') }}
|
{{ t('Create due day') }}
|
||||||
</QTooltip>
|
</QTooltip>
|
||||||
</QPageSticky>
|
</QPageSticky>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.q-chip {
|
.q-chip {
|
||||||
color: var(--vn-text-color);
|
color: var(--vn-text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.invoice-in-due-day {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
:deep(.full-width) {
|
||||||
|
max-width: 900px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
|
|
Loading…
Reference in New Issue