6629-addressObservation #1286

Merged
robert merged 15 commits from 6629-addressObservation into dev 2025-01-27 07:02:10 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 2246792404 - Show all commits

View File

@ -99,8 +99,8 @@ const updateObservations = async (payload) => {
toCustomerAddress(); toCustomerAddress();
}; };
async function updateAll({ data, payload }) { async function updateAll({ data, payload }) {
await updateAddress(data);
await updateObservations(payload); await updateObservations(payload);
await updateAddress(data);
} }
function getPayload() { function getPayload() {
return { return {
@ -138,8 +138,8 @@ async function handleDialog(data) {
}, },
}) })
.onOk(async () => { .onOk(async () => {
await updateAll(body);
await updateAddressTicket(); await updateAddressTicket();
await updateAll(body);
toCustomerAddress(); toCustomerAddress();
}) })
.onCancel(async () => { .onCancel(async () => {