# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. import datetime from odoo import api, fields, models, modules, _ from pytz import timezone, UTC class Users(models.Model): _inherit = 'res.users' def _systray_get_calendar_event_domain(self): # Determine the domain for which the users should be notified. This method sends notification to # events occurring between now and the end of the day. Note that "now" needs to be computed in the # user TZ and converted into UTC to compare with the records values and "the end of the day" needs # also conversion. Otherwise TZ diverting a lot from UTC would send notification for events occurring # tomorrow. # The user is notified if the start is occurring between now and the end of the day # if the event is not finished. # | | # |===========|===> DAY A (`start_dt`): now in the user TZ # | | # | | <--- `start_dt_utc`: now is on the right if the user lives # | | in West Longitude (America for example) # | | # | ------- | <--- `start`: the start of the event (in UTC) # | | event | | # | ------- | <--- `stop`: the stop of the event (in UTC) # | | # | | # | | <--- `stop_dt_utc` = `stop_dt` if user lives in an area of East longitude (positive shift compared to UTC, Belgium for example) # | | # | | # |-----------| <--- `stop_dt` = end of the day for DAY A from user point of view (23:59 in this TZ) # |===========|===> DAY B # | | # | | <--- `stop_dt_utc` = `stop_dt` if user lives in an area of West longitude (positive shift compared to UTC, America for example) # | | now_utc = datetime.datetime.utcnow() start_dt_utc = start_dt = now_utc.replace(tzinfo=UTC) stop_dt_utc = datetime.datetime.combine(now_utc.date(), datetime.time.max).replace(tzinfo=UTC) tz = self.env.user.tz if tz: user_tz = timezone(tz) start_dt = start_dt_utc.astimezone(user_tz) stop_dt = datetime.datetime.combine(start_dt.date(), datetime.time.max).replace(tzinfo=user_tz) stop_dt_utc = stop_dt.astimezone(UTC) start_date = start_dt.date() current_user_non_declined_attendee_ids = self.env['calendar.attendee']._search([ ('partner_id', '=', self.env.user.partner_id.id), ('state', '!=', 'declined'), ]) return ['&', '|', '&', '|', ['start', '>=', fields.Datetime.to_string(start_dt_utc)], ['stop', '>=', fields.Datetime.to_string(start_dt_utc)], ['start', '<=', fields.Datetime.to_string(stop_dt_utc)], '&', ['allday', '=', True], ['start_date', '=', fields.Date.to_string(start_date)], ('attendee_ids', 'in', current_user_non_declined_attendee_ids)] @api.model def systray_get_activities(self): res = super(Users, self).systray_get_activities() EventModel = self.env['calendar.event'] meetings_lines = EventModel.search_read( self._systray_get_calendar_event_domain(), ['id', 'start', 'name', 'allday'], order='start') if meetings_lines: meeting_label = _("Today's Meetings") meetings_systray = { 'id': self.env['ir.model']._get('calendar.event').id, 'type': 'meeting', 'name': meeting_label, 'model': 'calendar.event', 'icon': modules.module.get_module_icon(EventModel._original_module), 'meetings': meetings_lines, "view_type": EventModel._systray_view, } res.insert(0, meetings_systray) return res @api.model def check_calendar_credentials(self): return {}