Modulo de rutas #195

Merged
jsegarra merged 49 commits from :feature/route-module into dev 2024-03-14 12:44:43 +00:00
1 changed files with 7 additions and 10 deletions
Showing only changes of commit 4be9c02711 - Show all commits

View File

@ -102,16 +102,13 @@ const setTicketsRoute = async () => {
return;
}
const updates = selectedRows.value?.map((ticket) => ({
where: {
id: ticket.id,
data: {
routeFk: $props.id,
},
},
}));
await axios.post(`Tickets/crud`, { updates });
await Promise.all(
(selectedRows.value || [])
.filter((ticket) => ticket?.id)
.map((ticket) =>
axios.patch(`Routes/${$props.id}/insertTicket`, { ticketId: ticket.id })
)
);
await axios.post(`Routes/${$props.id}/updateVolume`);
emit('ok');
emit('hide');