fix: refs #6943 minor changes
gitea/salix-front/pipeline/pr-test There was a failure building this commit Details

This commit is contained in:
Javier Segarra 2025-02-14 17:18:36 +01:00
parent 53acb513ca
commit fc80946817
2 changed files with 4 additions and 6 deletions

View File

@ -3,6 +3,7 @@ import { ref } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import { useQuasar } from 'quasar'; import { useQuasar } from 'quasar';
import axios from 'axios';
import useNotify from 'src/composables/useNotify.js'; import useNotify from 'src/composables/useNotify.js';
import FetchData from 'components/FetchData.vue'; import FetchData from 'components/FetchData.vue';
@ -48,7 +49,7 @@ async function checkEtChanges(data, _, originalData) {
} }
async function acceptPropagate({ isEqualizated }) { async function acceptPropagate({ isEqualizated }) {
await $axios.patch(`Clients/${route.params.id}/addressesPropagateRe`, { await axios.patch(`Clients/${route.params.id}/addressesPropagateRe`, {
isEqualizated, isEqualizated,
}); });
notify(t('Equivalent tax spreaded'), 'warning'); notify(t('Equivalent tax spreaded'), 'warning');

View File

@ -96,11 +96,11 @@ const updateObservations = async (payload) => {
await axios.post('AddressObservations/crud', payload); await axios.post('AddressObservations/crud', payload);
notes.value = []; notes.value = [];
deletes.value = []; deletes.value = [];
toCustomerAddress();
}; };
async function updateAll({ data, payload }) { async function updateAll({ data, payload }) {
await updateObservations(payload); await updateObservations(payload);
await updateAddress(data); await updateAddress(data);
toCustomerAddress();
} }
function getPayload() { function getPayload() {
return { return {
@ -137,15 +137,12 @@ async function handleDialog(data) {
.onOk(async () => { .onOk(async () => {
await updateAddressTicket(); await updateAddressTicket();
await updateAll(body); await updateAll(body);
toCustomerAddress();
}) })
.onCancel(async () => { .onCancel(async () => {
await updateAll(body); await updateAll(body);
toCustomerAddress();
}); });
} else { } else {
updateAll(body); await updateAll(body);
toCustomerAddress();
} }
} }