From ce5c21f4fa893e834f08a20b481a81fa7bb8fa3d Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 3 Feb 2025 16:20:16 +0100 Subject: [PATCH 01/11] fix: refs #8370 change param rely on month --- src/pages/Worker/Card/WorkerTimeControl.vue | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/pages/Worker/Card/WorkerTimeControl.vue b/src/pages/Worker/Card/WorkerTimeControl.vue index c580e5202..d181c70af 100644 --- a/src/pages/Worker/Card/WorkerTimeControl.vue +++ b/src/pages/Worker/Card/WorkerTimeControl.vue @@ -345,17 +345,35 @@ const getMailStates = async (date) => { const url = `WorkerTimeControls/${route.params.id}/getMailStates`; const month = date.getMonth() + 1; const prevMonth = month == 1 ? 12 : month - 1; + const postMonth = month == 12 ? 1 : month + 1; const params = { month, year: date.getFullYear(), }; const curMonthStates = (await axios.get(url, { params })).data; + + if (prevMonth == 12) { + params.year = params.year - 1; + } const prevMonthStates = ( await axios.get(url, { params: { ...params, month: prevMonth } }) ).data; - workerTimeControlMails.value = curMonthStates.concat(prevMonthStates); + if (postMonth == 1) { + params.year = date.getFullYear() + 1; + } + + const postMonthStates = ( + await axios.get(url, { + params: { ...params, month: postMonth }, + }) + ).data; + + workerTimeControlMails.value = curMonthStates.concat( + prevMonthStates, + postMonthStates + ); }; const showWorkerTimeForm = (propValue, formType) => { From 15d94ca165ebe7dd23f6c9c185a2cef8f1aa6727 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Mon, 3 Mar 2025 23:10:44 +0100 Subject: [PATCH 02/11] fix: add order and sortBy --- src/components/FilterTravelForm.vue | 2 +- src/pages/Entry/EntryFilter.vue | 1 + src/pages/Route/Card/RouteAutonomousFilter.vue | 3 +-- src/pages/Ticket/TicketFilter.vue | 7 ++++++- src/pages/Travel/ExtraCommunityFilter.vue | 1 + src/pages/Travel/TravelCreate.vue | 1 + src/pages/Travel/TravelFilter.vue | 3 +-- src/pages/Zone/ZoneFilterPanel.vue | 3 ++- src/pages/Zone/ZoneList.vue | 3 +-- 9 files changed, 15 insertions(+), 9 deletions(-) diff --git a/src/components/FilterTravelForm.vue b/src/components/FilterTravelForm.vue index 4d43c3810..cd4b28a44 100644 --- a/src/components/FilterTravelForm.vue +++ b/src/components/FilterTravelForm.vue @@ -124,7 +124,7 @@ const selectTravel = ({ id }) => { {