Hotfix[CustomerAddress]: Fixed buttons disabled when there are no changes #1641
|
@ -93,10 +93,26 @@ const updateAddressTicket = async () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const updateObservations = async (payload) => {
|
const updateObservations = async (payload) => {
|
||||||
await axios.post('AddressObservations/crud', payload);
|
await axios.post('AddressObservations/crud', cleanPayload(payload));
|
||||||
notes.value = [];
|
notes.value = [];
|
||||||
jon marked this conversation as resolved
|
|||||||
deletes.value = [];
|
deletes.value = [];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function cleanPayload(payload) {
|
||||||
|
['creates', 'deletes', 'updates'].forEach((prop) => {
|
||||||
|
if (prop === 'creates' || prop === 'updates') {
|
||||||
|
payload[prop] = payload[prop].filter(
|
||||||
|
(item) => item.description !== '' && item.observationTypeFk !== '',
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
payload[prop] = payload[prop].filter(
|
||||||
|
(item) => item !== null && item !== undefined,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return payload;
|
||||||
|
}
|
||||||
|
|
||||||
async function updateAll({ data, payload }) {
|
async function updateAll({ data, payload }) {
|
||||||
await updateObservations(payload);
|
await updateObservations(payload);
|
||||||
await updateAddress(data);
|
await updateAddress(data);
|
||||||
|
|
Loading…
Reference in New Issue
Deberia ser:
await axios.post('AddressObservations/crud', cleanPayload(payload));