Merge branch 'dev' into 6994-fix_vnLogValue_whenIsString
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Alex Moreno 2025-03-25 12:02:07 +00:00
commit 8bc68dd731
4 changed files with 2 additions and 29 deletions

View File

@ -105,15 +105,6 @@ const debtWarning = computed(() => {
>
<QTooltip>{{ t('customer.card.isDisabled') }}</QTooltip>
</QIcon>
<QIcon
v-if="entity?.substitutionAllowed"
name="help"
size="xs"
color="primary"
>
<QTooltip>{{ t('Allowed substitution') }}</QTooltip>
</QIcon>
<QIcon
v-if="!entity.account?.active"
color="primary"

View File

@ -61,16 +61,6 @@ const openCreateForm = (type) => {
.join('&');
useOpenURL(`/#/${type}/list?${params}`);
};
const updateSubstitutionAllowed = async () => {
try {
await axios.patch(`Clients/${route.params.id}`, {
substitutionAllowed: !$props.customer.substitutionAllowed,
});
notify('globals.notificationSent', 'positive');
} catch (error) {
notify(error.message, 'positive');
}
};
</script>
<template>
@ -79,13 +69,6 @@ const updateSubstitutionAllowed = async () => {
{{ t('globals.pageTitles.createTicket') }}
</QItemSection>
</QItem>
<QItem v-ripple clickable>
<QItemSection @click="updateSubstitutionAllowed()">{{
$props.customer.substitutionAllowed
? t('Disable substitution')
: t('Allow substitution')
}}</QItemSection>
</QItem>
<QItem v-ripple clickable>
<QItemSection @click="showSmsDialog()">{{ t('Send SMS') }}</QItemSection>
</QItem>

View File

@ -65,7 +65,6 @@ const columns = computed(() => [
attrs: {
url: 'Departments',
},
create: true,
columnField: {
component: null,
},

View File

@ -44,7 +44,7 @@ const getPriceDifference = async () => {
shipped: ticket.value.shipped,
};
const { data } = await axios.post(
`tickets/${formData.value.id}/priceDifference`,
`tickets/${ticket.value.id}/priceDifference`,
params,
);
ticket.value.sale = data;
@ -71,7 +71,7 @@ const submit = async () => {
};
const { data } = await axios.post(
`tickets/${formData.value.id}/componentUpdate`,
`tickets/${ticket.value.id}/componentUpdate`,
params,
);