Merge pull request 'HOTFIX: Customer Risk color' (!942) from hotFix_customerRisk_icon into master
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #942
Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
Javier Segarra 2024-11-15 10:32:35 +00:00
commit c57ff7b3c9
1 changed files with 6 additions and 3 deletions

View File

@ -37,6 +37,9 @@ const entityId = computed(() => {
const data = ref(useCardDescription());
const setData = (entity) => (data.value = useCardDescription(entity?.name, entity?.id));
const debtWarning = computed(() => {
return customer.value?.debt > customer.value?.credit ? 'negative' : 'primary';
});
</script>
<template>
@ -110,8 +113,8 @@ const setData = (entity) => (data.value = useCardDescription(entity?.name, entit
<QIcon
v-if="customer.debt > customer.credit"
name="vn:risk"
size="xs"
color="primary"
size="xs"
:color="debtWarning"
>
<QTooltip>{{ t('customer.card.hasDebt') }}</QTooltip>
</QIcon>
@ -122,7 +125,7 @@ const setData = (entity) => (data.value = useCardDescription(entity?.name, entit
color="primary"
>
<QTooltip>{{ t('customer.card.notChecked') }}</QTooltip>
</QIcon>
</QIcon>
<QBtn
v-if="customer.unpaid"
flat