fix(CustomerDescriptor): isFreezed icon
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2025-03-05 07:35:53 +01:00
parent fe4225d814
commit fa8e8a7d4d
1 changed files with 3 additions and 3 deletions

View File

@ -119,7 +119,7 @@ const debtWarning = computed(() => {
<QTooltip>{{ t('Allowed substitution') }}</QTooltip>
</QIcon>
<QIcon
v-if="customer?.isFreezed"
v-if="entity?.isFreezed"
name="vn:frozen"
size="xs"
color="primary"
@ -163,13 +163,13 @@ const debtWarning = computed(() => {
<br />
{{
t('unpaidDated', {
dated: toDate(customer.unpaid?.dated),
dated: toDate(entity.unpaid?.dated),
})
}}
<br />
{{
t('unpaidAmount', {
amount: toCurrency(customer.unpaid?.amount),
amount: toCurrency(entity.unpaid?.amount),
})
}}
</QTooltip>