HOTFIX #8217 Update Customer Credit #986

Merged
jsegarra merged 26 commits from hotfix_8217_updateCustomerCredit into master 2024-11-28 12:34:12 +00:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 12dcb51fbe - Show all commits

View File

@ -36,7 +36,10 @@ const entityId = computed(() => {
});
const data = ref(useCardDescription());
const setData = (entity) => (data.value = useCardDescription(entity?.name, entity?.id));
const setData = (entity) => {
data.value = useCardDescription(entity?.name, entity?.id);
if (customer.value) customer.value.webAccess = data.value?.account?.isActive;
Review

Donde se use, usar data.value?.account?.isActive

Donde se use, usar `data.value?.account?.isActive`
Review

En el icono noWeb,
Hay veces que no se sincroniza bien con el CustomerBasicData/CustomerFiscalData
Probar con el customer 1109

En el icono noWeb, Hay veces que no se sincroniza bien con el CustomerBasicData/CustomerFiscalData Probar con el customer 1109
};
const debtWarning = computed(() => {
return customer.value?.debt > customer.value?.credit ? 'negative' : 'primary';
});