7658-devToTest_2428 #508

Merged
alexm merged 392 commits from 7658-devToTest_2428 into test 2024-07-02 10:38:20 +00:00
1 changed files with 11 additions and 2 deletions
Showing only changes of commit 0ba415c0ea - Show all commits

View File

@ -377,6 +377,7 @@ const moveTicketsAdvance = async () => {
const params = { tickets: ticketsToMove };
await axios.post('Tickets/merge', params);
arrayData.fetch({ append: false });
selectedTickets.value = [];
if (ticketsToMove.length)
notify(t('advanceTickets.moveTicketSuccess'), 'positive');
} catch (error) {
@ -533,11 +534,19 @@ onMounted(async () => {
>
<template #header="props">
<QTr :props="props">
<QTh class="horizontal-separator" colspan="7" translate>
<QTh
class="horizontal-separator text-uppercase color-vn-label"
colspan="7"
translate
>
{{ t('advanceTickets.origin') }}
{{ toDateFormat(userParams.dateToAdvance) }}
</QTh>
<QTh class="horizontal-separator" colspan="9" translate>
<QTh
class="horizontal-separator text-uppercase color-vn-label"
colspan="9"
translate
>
{{ t('advanceTickets.destination') }}
{{ toDateFormat(userParams.dateFuture) }}
</QTh>