diff --git a/front/core/components/calendar/index.js b/front/core/components/calendar/index.js index c7e645ecd..0e39267a7 100644 --- a/front/core/components/calendar/index.js +++ b/front/core/components/calendar/index.js @@ -159,8 +159,6 @@ export default class Calendar extends FormInput { this.repaint(); this.emit('move', {$date: date}); - - this.getMailStates({$day: date}); } /* @@ -237,7 +235,6 @@ ngModule.vnComponent('vnCalendar', { bindings: { defaultDate: '=?', hasEvents: '&?', - getMailStates: '&?', getClass: '&?', formatDay: '&?', formatWeek: '&?', diff --git a/modules/worker/front/time-control/index.html b/modules/worker/front/time-control/index.html index e972fae22..bd7e68b89 100644 --- a/modules/worker/front/time-control/index.html +++ b/modules/worker/front/time-control/index.html @@ -123,7 +123,7 @@ class="vn-pt-md" ng-model="$ctrl.date" format-week="$ctrl.formatWeek($element)" - get-mail-states="$ctrl.getMailStates($day)" + on-move="$ctrl.getMailStates($date)" has-events="$ctrl.hasEvents($day)"> diff --git a/modules/worker/front/time-control/index.js b/modules/worker/front/time-control/index.js index 441b3bbf7..9ed454d31 100644 --- a/modules/worker/front/time-control/index.js +++ b/modules/worker/front/time-control/index.js @@ -421,10 +421,10 @@ class Controller extends Section { return [parseInt(hours), parseInt(minutes), parseInt(seconds)]; } - getMailStates(day) { + getMailStates(date) { const params = { - month: day.getMonth() + 1, - year: day.getFullYear() + month: date.getMonth() + 1, + year: date.getFullYear() }; const query = `WorkerTimeControls/${this.$params.id}/getMailStates`; this.$http.get(query, {params})