7152-devToTest_2414 #262

Merged
alexm merged 226 commits from 7152-devToTest_2414 into test 2024-03-28 08:20:24 +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');