19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:30:27 +01:00
parent d1963a3c3a
commit 2d3ee4855a
7430 changed files with 2687981 additions and 2965473 deletions

View file

@ -1,18 +1,14 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import logging
import random
import threading
from collections import namedtuple
from datetime import datetime
from dateutil.relativedelta import relativedelta
from markupsafe import Markup
from odoo import api, fields, models, tools
from odoo import api, fields, models, modules, tools
from odoo.addons.base.models.ir_qweb import QWebError
from odoo.tools import exception_to_unicode
from odoo.tools.translate import _
from odoo.exceptions import MissingError, ValidationError
_logger = logging.getLogger(__name__)
@ -26,51 +22,7 @@ _INTERVALS = {
}
class EventTypeMail(models.Model):
""" Template of event.mail to attach to event.type. Those will be copied
upon all events created in that type to ease event creation. """
_name = 'event.type.mail'
_description = 'Mail Scheduling on Event Category'
@api.model
def _selection_template_model(self):
return [('mail.template', 'Mail')]
event_type_id = fields.Many2one(
'event.type', string='Event Type',
ondelete='cascade', required=True)
notification_type = fields.Selection([('mail', 'Mail')], string='Send', default='mail', required=True)
interval_nbr = fields.Integer('Interval', default=1)
interval_unit = fields.Selection([
('now', 'Immediately'),
('hours', 'Hours'), ('days', 'Days'),
('weeks', 'Weeks'), ('months', 'Months')],
string='Unit', default='hours', required=True)
interval_type = fields.Selection([
('after_sub', 'After each registration'),
('before_event', 'Before the event'),
('after_event', 'After the event')],
string='Trigger', default="before_event", required=True)
template_model_id = fields.Many2one('ir.model', string='Template Model', compute='_compute_template_model_id', compute_sudo=True)
template_ref = fields.Reference(string='Template', selection='_selection_template_model', required=True)
@api.depends('notification_type')
def _compute_template_model_id(self):
mail_model = self.env['ir.model']._get('mail.template')
for mail in self:
mail.template_model_id = mail_model if mail.notification_type == 'mail' else False
def _prepare_event_mail_values(self):
self.ensure_one()
return namedtuple("MailValues", ['notification_type', 'interval_nbr', 'interval_unit', 'interval_type', 'template_ref'])(
self.notification_type,
self.interval_nbr,
self.interval_unit,
self.interval_type,
'%s,%i' % (self.template_ref._name, self.template_ref.id)
)
class EventMailScheduler(models.Model):
class EventMail(models.Model):
""" Event automated mailing. This model replaces all existing fields and
configuration allowing to send emails on events since Odoo 9. A cron exists
that periodically checks for mailing to run. """
@ -78,23 +30,8 @@ class EventMailScheduler(models.Model):
_rec_name = 'event_id'
_description = 'Event Automated Mailing'
@api.model
def _selection_template_model(self):
return [('mail.template', 'Mail')]
def _selection_template_model_get_mapping(self):
return {'mail': 'mail.template'}
@api.onchange('notification_type')
def set_template_ref_model(self):
mail_model = self.env['mail.template']
if self.notification_type == 'mail':
record = mail_model.search([('model', '=', 'event.registration')], limit=1)
self.template_ref = "{},{}".format('mail.template', record.id) if record else False
event_id = fields.Many2one('event.event', string='Event', required=True, ondelete='cascade')
event_id = fields.Many2one('event.event', string='Event', required=True, index=True, ondelete='cascade')
sequence = fields.Integer('Display order')
notification_type = fields.Selection([('mail', 'Mail')], string='Send', default='mail', required=True)
interval_nbr = fields.Integer('Interval', default=1)
interval_unit = fields.Selection([
('now', 'Immediately'),
@ -102,154 +39,426 @@ class EventMailScheduler(models.Model):
('weeks', 'Weeks'), ('months', 'Months')],
string='Unit', default='hours', required=True)
interval_type = fields.Selection([
# attendee based
('after_sub', 'After each registration'),
('before_event', 'Before the event'),
('after_event', 'After the event')],
string='Trigger ', default="before_event", required=True)
# event based: start date
('before_event', 'Before the event starts'),
('after_event_start', 'After the event started'),
# event based: end date
('after_event', 'After the event ended'),
('before_event_end', 'Before the event ends')],
string='Trigger ', default="before_event", required=True,
help="Indicates when the communication is sent. "
"If the event has multiple slots, the interval is related to each time slot instead of the whole event.")
scheduled_date = fields.Datetime('Schedule Date', compute='_compute_scheduled_date', store=True)
error_datetime = fields.Datetime('Last Error')
# contact and status
last_registration_id = fields.Many2one('event.registration', 'Last Attendee')
mail_registration_ids = fields.One2many(
'event.mail.registration', 'scheduler_id',
help='Communication related to event registrations')
mail_slot_ids = fields.One2many(
'event.mail.slot', 'scheduler_id',
help='Slot-based communication')
mail_done = fields.Boolean("Sent", copy=False, readonly=True)
mail_state = fields.Selection(
[('running', 'Running'), ('scheduled', 'Scheduled'), ('sent', 'Sent')],
[('running', 'Running'), ('scheduled', 'Scheduled'), ('sent', 'Sent'), ('error', 'Error'), ('cancelled', 'Cancelled')],
string='Global communication Status', compute='_compute_mail_state')
mail_count_done = fields.Integer('# Sent', copy=False, readonly=True)
template_model_id = fields.Many2one('ir.model', string='Template Model', compute='_compute_template_model_id', compute_sudo=True)
template_ref = fields.Reference(string='Template', selection='_selection_template_model', required=True)
@api.depends('notification_type')
def _compute_template_model_id(self):
mail_model = self.env['ir.model']._get('mail.template')
for mail in self:
mail.template_model_id = mail_model if mail.notification_type == 'mail' else False
notification_type = fields.Selection([('mail', 'Mail')], string='Send', compute='_compute_notification_type')
template_ref = fields.Reference(string='Template', ondelete={'mail.template': 'cascade'}, required=True, selection=[('mail.template', 'Mail')])
@api.depends('event_id.date_begin', 'event_id.date_end', 'interval_type', 'interval_unit', 'interval_nbr')
def _compute_scheduled_date(self):
for scheduler in self:
if scheduler.interval_type == 'after_sub':
date, sign = scheduler.event_id.create_date, 1
elif scheduler.interval_type == 'before_event':
date, sign = scheduler.event_id.date_begin, -1
elif scheduler.interval_type in ('before_event', 'after_event_start'):
date, sign = scheduler.event_id.date_begin, scheduler.interval_type == 'before_event' and -1 or 1
else:
date, sign = scheduler.event_id.date_end, 1
date, sign = scheduler.event_id.date_end, scheduler.interval_type == 'after_event' and 1 or -1
scheduler.scheduled_date = date.replace(microsecond=0) + _INTERVALS[scheduler.interval_unit](sign * scheduler.interval_nbr) if date else False
@api.depends('interval_type', 'scheduled_date', 'mail_done')
next_schedule = self.filtered('scheduled_date').mapped('scheduled_date')
if next_schedule and (cron := self.env.ref('event.event_mail_scheduler', raise_if_not_found=False)):
cron._trigger(next_schedule)
@api.depends('error_datetime', 'interval_type', 'mail_done', 'event_id')
def _compute_mail_state(self):
for scheduler in self:
# issue detected
if scheduler.error_datetime:
scheduler.mail_state = 'error'
# event cancelled
elif not scheduler.mail_done and scheduler.event_id.kanban_state == 'cancel':
scheduler.mail_state = 'cancelled'
# registrations based
if scheduler.interval_type == 'after_sub':
elif scheduler.interval_type == 'after_sub':
scheduler.mail_state = 'running'
# global event based
elif scheduler.mail_done:
scheduler.mail_state = 'sent'
elif scheduler.scheduled_date:
scheduler.mail_state = 'scheduled'
else:
scheduler.mail_state = 'running'
scheduler.mail_state = 'scheduled'
@api.constrains('notification_type', 'template_ref')
def _check_template_ref_model(self):
model_map = self._selection_template_model_get_mapping()
for record in self.filtered('template_ref'):
model = model_map[record.notification_type]
if record.template_ref._name != model:
raise ValidationError(_('The template which is referenced should be coming from %(model_name)s model.', model_name=model))
@api.depends('template_ref')
def _compute_notification_type(self):
"""Assigns the type of template in use, if any is set."""
self.notification_type = 'mail'
def execute(self):
for scheduler in self:
now = fields.Datetime.now()
now = fields.Datetime.now()
for scheduler in self._filter_template_ref():
if scheduler.interval_type == 'after_sub':
new_registrations = scheduler.event_id.registration_ids.filtered_domain(
[('state', 'not in', ('cancel', 'draft'))]
) - scheduler.mail_registration_ids.registration_id
scheduler._create_missing_mail_registrations(new_registrations)
# execute scheduler on registrations
scheduler.mail_registration_ids.execute()
total_sent = len(scheduler.mail_registration_ids.filtered(lambda reg: reg.mail_sent))
scheduler.update({
'mail_done': total_sent >= (scheduler.event_id.seats_reserved + scheduler.event_id.seats_used),
'mail_count_done': total_sent,
})
scheduler._execute_attendee_based()
elif scheduler.event_id.is_multi_slots:
scheduler._execute_slot_based()
else:
# before or after event -> one shot email
if scheduler.mail_done or scheduler.notification_type != 'mail':
continue
# no template -> ill configured, skip and avoid crash
if not scheduler.template_ref:
# before or after event -> one shot communication, once done skip
if scheduler.mail_done:
continue
# do not send emails if the mailing was scheduled before the event but the event is over
if scheduler.scheduled_date <= now and (scheduler.interval_type != 'before_event' or scheduler.event_id.date_end > now):
scheduler.event_id.mail_attendees(scheduler.template_ref.id)
# Mail is sent to all attendees (unconfirmed as well), so count all attendees
scheduler.update({
'mail_done': True,
'mail_count_done': scheduler.event_id.seats_expected,
})
if scheduler.scheduled_date <= now and (scheduler.interval_type not in ('before_event', 'after_event_start') or scheduler.event_id.date_end > now):
scheduler._execute_event_based()
scheduler.error_datetime = False
return True
def _execute_event_based(self, mail_slot=False):
""" Main scheduler method when running in event-based mode aka
'after_event' or 'before_event' (and their negative counterparts).
This is a global communication done once i.e. we do not track each
registration individually.
:param mail_slot: optional <event.mail.slot> slot-specific event communication,
when event uses slots. In that case, it works like the classic event
communication (iterative, ...) but information is specific to each
slot (last registration, scheduled datetime, ...)
"""
auto_commit = not modules.module.current_test
batch_size = int(
self.env['ir.config_parameter'].sudo().get_param('mail.batch_size')
) or 50 # be sure to not have 0, as otherwise no iteration is done
cron_limit = int(
self.env['ir.config_parameter'].sudo().get_param('mail.render.cron.limit')
) or 1000 # be sure to not have 0, as otherwise we will loop
scheduler_record = mail_slot or self
# fetch registrations to contact
registration_domain = [
('event_id', '=', self.event_id.id),
('state', 'not in', ["draft", "cancel"]),
]
if mail_slot:
registration_domain += [('event_slot_id', '=', mail_slot.event_slot_id.id)]
if scheduler_record.last_registration_id:
registration_domain += [('id', '>', self.last_registration_id.id)]
registrations = self.env["event.registration"].search(registration_domain, limit=(cron_limit + 1), order="id ASC")
# no registrations -> done
if not registrations:
scheduler_record.mail_done = True
return
# there are more than planned for the cron -> reschedule
if len(registrations) > cron_limit:
registrations = registrations[:cron_limit]
self.env.ref('event.event_mail_scheduler')._trigger()
for registrations_chunk in tools.split_every(batch_size, registrations.ids, self.env["event.registration"].browse):
self._execute_event_based_for_registrations(registrations_chunk)
scheduler_record.last_registration_id = registrations_chunk[-1]
self._refresh_mail_count_done(mail_slot=mail_slot)
if auto_commit:
self.env.cr.commit()
# invalidate cache, no need to keep previous content in memory
self.env.invalidate_all()
def _execute_event_based_for_registrations(self, registrations):
""" Method doing notification and recipients specific implementation
of contacting attendees globally.
:param registrations: a recordset of registrations to contact
"""
self.ensure_one()
if self.notification_type == "mail":
self._send_mail(registrations)
return True
def _execute_slot_based(self):
""" Main scheduler method when running in slot-based mode aka
'after_event' or 'before_event' (and their negative counterparts) on
events with slots. This is a global communication done once i.e. we do
not track each registration individually. """
# create slot-specific schedulers if not existing
missing_slots = self.event_id.event_slot_ids - self.mail_slot_ids.event_slot_id
if missing_slots:
self.write({'mail_slot_ids': [
(0, 0, {'event_slot_id': slot.id})
for slot in missing_slots
]})
# filter slots to contact
now = fields.Datetime.now()
for mail_slot in self.mail_slot_ids:
# before or after event -> one shot communication, once done skip
if mail_slot.mail_done:
continue
# do not send emails if the mailing was scheduled before the slot but the slot is over
if mail_slot.scheduled_date <= now and (self.interval_type not in ('before_event', 'after_event_start') or mail_slot.event_slot_id.end_datetime > now):
self._execute_event_based(mail_slot=mail_slot)
def _execute_attendee_based(self):
""" Main scheduler method when running in attendee-based mode aka
'after_sub'. This relies on a sub model allowing to know which
registrations have been contacted.
It currently does two main things
* generate missing 'event.mail.registrations' which are scheduled
communication linked to registrations;
* launch registration-based communication, splitting in batches as
it may imply a lot of computation. When having more than given
limit to handle, schedule another call of cron to avoid having to
wait another cron interval check;
"""
self.ensure_one()
context_registrations = self.env.context.get('event_mail_registration_ids')
auto_commit = not modules.module.current_test
batch_size = int(
self.env['ir.config_parameter'].sudo().get_param('mail.batch_size')
) or 50 # be sure to not have 0, as otherwise no iteration is done
cron_limit = int(
self.env['ir.config_parameter'].sudo().get_param('mail.render.cron.limit')
) or 1000 # be sure to not have 0, as otherwise we will loop
# fillup on subscription lines (generate more than to render creating
# mail.registration is less costly than rendering emails)
# note: original 2many domain was
# ("id", "not in", self.env["event.registration"]._search([
# ("mail_registration_ids.scheduler_id", "in", self.ids),
# ]))
# but it gives less optimized sql
new_attendee_domain = [
('event_id', '=', self.event_id.id),
("state", "not in", ("cancel", "draft")),
("mail_registration_ids", "not in", self.env["event.mail.registration"]._search(
[('scheduler_id', 'in', self.ids)]
)),
]
if context_registrations:
new_attendee_domain += [
('id', 'in', context_registrations),
]
self.env["event.mail.registration"].flush_model(["registration_id", "scheduler_id"])
new_attendees = self.env["event.registration"].search(new_attendee_domain, limit=cron_limit * 2, order="id ASC")
new_attendee_mails = self._create_missing_mail_registrations(new_attendees)
# fetch attendee schedulers to run (or use the one given in context)
mail_domain = self.env["event.mail.registration"]._get_skip_domain() + [("scheduler_id", "=", self.id)]
if context_registrations:
new_attendee_mails = new_attendee_mails.filtered_domain(mail_domain)
else:
new_attendee_mails = self.env["event.mail.registration"].search(
mail_domain,
limit=(cron_limit + 1), order="id ASC"
)
# there are more than planned for the cron -> reschedule
if len(new_attendee_mails) > cron_limit:
new_attendee_mails = new_attendee_mails[:cron_limit]
self.env.ref('event.event_mail_scheduler')._trigger()
for chunk in tools.split_every(batch_size, new_attendee_mails.ids, self.env["event.mail.registration"].browse):
# filter out canceled / draft, and compare to seats_taken (same heuristic)
valid_chunk = chunk.filtered(lambda m: m.registration_id.state not in ("draft", "cancel"))
# scheduled mails for draft / cancel should be removed as they won't be sent
(chunk - valid_chunk).unlink()
# send communications, then update only when being in cron mode (aka no
# context registrations) to avoid concurrent updates on scheduler
valid_chunk._execute_on_registrations()
# if not context_registrations:
self._refresh_mail_count_done()
if auto_commit:
self.env.cr.commit()
# invalidate cache, no need to keep previous content in memory
self.env.invalidate_all()
def _create_missing_mail_registrations(self, registrations):
new = []
new = self.env["event.mail.registration"]
for scheduler in self:
new += [{
'registration_id': registration.id,
'scheduler_id': scheduler.id,
} for registration in registrations]
if new:
return self.env['event.mail.registration'].create(new)
return self.env['event.mail.registration']
for _chunk in tools.split_every(500, registrations.ids, self.env["event.registration"].browse):
new += self.env['event.mail.registration'].create([{
'registration_id': registration.id,
'scheduler_id': scheduler.id,
} for registration in registrations])
return new
def _refresh_mail_count_done(self, mail_slot=False):
for scheduler in self:
if scheduler.interval_type == "after_sub":
total_sent = self.env["event.mail.registration"].search_count([
("scheduler_id", "=", self.id),
("mail_sent", "=", True),
])
scheduler.mail_count_done = total_sent
elif mail_slot and mail_slot.last_registration_id:
total_sent = self.env["event.registration"].search_count([
("id", "<=", mail_slot.last_registration_id.id),
("event_id", "=", scheduler.event_id.id),
("event_slot_id", "=", mail_slot.event_slot_id.id),
("state", "not in", ["draft", "cancel"]),
])
mail_slot.mail_count_done = total_sent
mail_slot.mail_done = total_sent >= mail_slot.event_slot_id.seats_taken
scheduler.mail_count_done = sum(scheduler.mail_slot_ids.mapped('mail_count_done'))
scheduler.mail_done = scheduler.mail_count_done >= scheduler.event_id.seats_taken
elif scheduler.last_registration_id:
total_sent = self.env["event.registration"].search_count([
("id", "<=", self.last_registration_id.id),
("event_id", "=", self.event_id.id),
("state", "not in", ["draft", "cancel"]),
])
scheduler.mail_count_done = total_sent
scheduler.mail_done = total_sent >= self.event_id.seats_taken
else:
scheduler.mail_count_done = 0
scheduler.mail_done = False
def _filter_template_ref(self):
""" Check for valid template reference: existing, working template """
type_info = self._template_model_by_notification_type()
if not self:
return self.browse()
invalid = self.browse()
missing = self.browse()
for scheduler in self:
tpl_model = type_info[scheduler.notification_type]
if scheduler.template_ref._name != tpl_model:
invalid += scheduler
else:
template = self.env[tpl_model].browse(scheduler.template_ref.id).exists()
if not template:
missing += scheduler
for scheduler in missing:
_logger.warning(
"Cannot process scheduler %s (event %s - ID %s) as it refers to non-existent %s (ID %s)",
scheduler.id, scheduler.event_id.name, scheduler.event_id.id,
tpl_model, scheduler.template_ref.id
)
for scheduler in invalid:
_logger.warning(
"Cannot process scheduler %s (event %s - ID %s) as it refers to invalid template %s (ID %s) (%s instead of %s)",
scheduler.id, scheduler.event_id.name, scheduler.event_id.id,
scheduler.template_ref.name, scheduler.template_ref.id,
scheduler.template_ref._name, tpl_model)
return self - missing - invalid
def _send_mail(self, registrations):
""" Mail action: send mail to attendees """
if self.event_id.organizer_id.email:
author = self.event_id.organizer_id
elif self.env.company.email:
author = self.env.company.partner_id
elif self.env.user.email:
author = self.env.user.partner_id
else:
author = self.env.ref('base.user_root').partner_id
composer_values = {
'composition_mode': 'mass_mail',
'force_send': False,
'model': registrations._name,
'res_ids': registrations.ids,
'template_id': self.template_ref.id,
}
# force author, as mailing mode does not try to find the author matching
# email_from (done only when posting on chatter); give email_from if not
# configured on template
composer_values['author_id'] = author.id
composer_values['email_from'] = self.template_ref.email_from or author.email_formatted
composer = self.env['mail.compose.message'].create(composer_values)
# backward compatible behavior: event mail scheduler does not force partner
# creation, email_cc / email_to is kept on outgoing emails
composer.with_context(mail_composer_force_partners=False)._action_send_mail()
def _template_model_by_notification_type(self):
return {
"mail": "mail.template",
}
def _prepare_event_mail_values(self):
self.ensure_one()
return namedtuple("MailValues", ['notification_type', 'interval_nbr', 'interval_unit', 'interval_type', 'template_ref'])(
self.notification_type,
self.interval_nbr,
self.interval_unit,
self.interval_type,
'%s,%i' % (self.template_ref._name, self.template_ref.id)
)
return {
'interval_nbr': self.interval_nbr,
'interval_unit': self.interval_unit,
'interval_type': self.interval_type,
'template_ref': '%s,%i' % (self.template_ref._name, self.template_ref.id),
}
@api.model
def _warn_template_error(self, scheduler, exception):
# We warn ~ once by hour ~ instead of every 10 min if the interval unit is more than 'hours'.
if random.random() < 0.1666 or scheduler.interval_unit in ('now', 'hours'):
ex_s = exception_to_unicode(exception)
try:
event, template = scheduler.event_id, scheduler.template_ref
emails = list(set([event.organizer_id.email, event.user_id.email, template.write_uid.email]))
subject = _("WARNING: Event Scheduler Error for event: %s", event.name)
body = _("""Event Scheduler for:
- Event: %(event_name)s (%(event_id)s)
- Scheduled: %(date)s
- Template: %(template_name)s (%(template_id)s)
def _warn_error(self, exception):
last_error_dt = self.error_datetime
now = self.env.cr.now().replace(microsecond=0)
if not last_error_dt or last_error_dt < now - relativedelta(hours=1):
# message base: event, date
event, template = self.event_id, self.template_ref
if self.interval_type == "after_sub":
scheduled_date = now
else:
scheduled_date = self.scheduled_date
body_content = _(
"Communication for %(event_name)s scheduled on %(scheduled_date)s failed.",
event_name=event.name,
scheduled_date=scheduled_date,
)
Failed with error:
- %(error)s
You receive this email because you are:
- the organizer of the event,
- or the responsible of the event,
- or the last writer of the template.
""",
event_name=event.name,
event_id=event.id,
date=scheduler.scheduled_date,
template_name=template.name,
template_id=template.id,
error=ex_s)
email = self.env['ir.mail_server'].build_email(
email_from=self.env.user.email,
email_to=emails,
subject=subject, body=body,
# add some information on cause
template_link = Markup('<a href="%s">%s (%s)</a>') % (
f"{self.get_base_url()}/odoo/{template._name}/{template.id}",
template.display_name,
template.id,
)
cause = exception.__cause__ or exception.__context__
if hasattr(cause, 'qweb'):
source_content = _(
"This is due to an error in template %(template_link)s.",
template_link=template_link,
)
self.env['ir.mail_server'].send_email(email)
except Exception as e:
_logger.error("Exception while sending traceback by email: %s.\n Original Traceback:\n%s", e, exception)
pass
if isinstance(cause, QWebError) and isinstance(cause.__cause__, AttributeError):
error_message = _(
"There is an issue with dynamic placeholder. Actual error received is: %(error)s.",
error=Markup('<br/>%s') % cause.__cause__,
)
else:
error_message = _(
"Rendering of template failed with error: %(error)s.",
error=Markup('<br/>%s') % cause.qweb,
)
else:
source_content = _(
"This may be linked to template %(template_link)s.",
template_link=template_link,
)
error_message = _(
"It failed with error %(error)s.",
error=exception_to_unicode(exception),
)
body = Markup("<p>%s %s<br /><br />%s</p>") % (body_content, source_content, error_message)
recipients = (event.organizer_id | event.user_id.partner_id | template.write_uid.partner_id).filtered(
lambda p: p.active
)
self.event_id.message_post(
body=body,
force_send=False, # use email queue, especially it could be cause of error
notify_author_mention=True, # in case of event responsible creating attendees
partner_ids=recipients.ids,
)
self.error_datetime = now
@api.model
def run(self, autocommit=False):
@ -260,9 +469,15 @@ You receive this email because you are:
@api.model
def schedule_communications(self, autocommit=False):
schedulers = self.search([
# skip archived events
('event_id.active', '=', True),
# skip if event is cancelled
('event_id.kanban_state', '!=', 'cancel'),
# scheduled
('scheduled_date', '<=', fields.Datetime.now()),
# event-based: todo / attendee-based: running until event is not done
('mail_done', '=', False),
('scheduled_date', '<=', fields.Datetime.now())
'|', ('interval_type', '!=', 'after_sub'), ('event_id.date_end', '>', self.env.cr.now()),
])
for scheduler in schedulers:
@ -272,67 +487,8 @@ You receive this email because you are:
except Exception as e:
_logger.exception(e)
self.env.invalidate_all()
self._warn_template_error(scheduler, e)
scheduler._warn_error(e)
else:
if autocommit and not getattr(threading.current_thread(), 'testing', False):
if autocommit and not modules.module.current_test:
self.env.cr.commit()
return True
class EventMailRegistration(models.Model):
_name = 'event.mail.registration'
_description = 'Registration Mail Scheduler'
_rec_name = 'scheduler_id'
_order = 'scheduled_date DESC'
scheduler_id = fields.Many2one('event.mail', 'Mail Scheduler', required=True, ondelete='cascade')
registration_id = fields.Many2one('event.registration', 'Attendee', required=True, ondelete='cascade')
scheduled_date = fields.Datetime('Scheduled Time', compute='_compute_scheduled_date', store=True)
mail_sent = fields.Boolean('Mail Sent')
def execute(self):
now = fields.Datetime.now()
todo = self.filtered(lambda reg_mail:
not reg_mail.mail_sent and \
reg_mail.registration_id.state in ['open', 'done'] and \
(reg_mail.scheduled_date and reg_mail.scheduled_date <= now) and \
reg_mail.scheduler_id.notification_type == 'mail'
)
done = self.browse()
for reg_mail in todo:
organizer = reg_mail.scheduler_id.event_id.organizer_id
company = self.env.company
author = self.env.ref('base.user_root').partner_id
if organizer.email:
author = organizer
elif company.email:
author = company.partner_id
elif self.env.user.email:
author = self.env.user.partner_id
email_values = {
'author_id': author.id,
}
template = None
try:
template = reg_mail.scheduler_id.template_ref.exists()
except MissingError:
pass
if not template:
_logger.warning("Cannot process ticket %s, because Mail Scheduler %s has reference to non-existent template", reg_mail.registration_id, reg_mail.scheduler_id)
continue
if not template.email_from:
email_values['email_from'] = author.email_formatted
template.send_mail(reg_mail.registration_id.id, email_values=email_values)
done |= reg_mail
done.write({'mail_sent': True})
@api.depends('registration_id', 'scheduler_id.interval_unit', 'scheduler_id.interval_type')
def _compute_scheduled_date(self):
for mail in self:
if mail.registration_id:
mail.scheduled_date = mail.registration_id.create_date.replace(microsecond=0) + _INTERVALS[mail.scheduler_id.interval_unit](mail.scheduler_id.interval_nbr)
else:
mail.scheduled_date = False