# -*- coding: utf-8 -*- # © 2012-2013 Akretion Sébastien BEAU,David Beal,Alexis de Lattre # © 2016 Sodexis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from openerp import models, fields, api, _ from openerp.exceptions import UserError import logging _logger = logging.getLogger(__name__) class IrCron(models.Model): _inherit = "ir.cron" email_template_id = fields.Many2one( comodel_name="mail.template", string="Error E-mail Template", help="Select the email template that will be sent when " "this scheduler fails." ) @api.model def _handle_callback_exception( self, model_name, method_name, args, job_id, job_exception): res = super(IrCron, self)._handle_callback_exception( model_name, method_name, args, job_id, job_exception) my_cron = self.browse(job_id) if my_cron.email_template_id: # we put the job_exception in context to be able to print it inside # the email template context = { 'job_exception': job_exception, 'dbname': self._cr.dbname, } _logger.debug( "Sending scheduler error email with context=%s", context) self.env['mail.template'].browse( my_cron.email_template_id.id ).with_context(context).sudo().send_mail( my_cron.id, force_send=True) return res @api.model def _test_scheduler_failure(self): """This function is used to test and debug this module""" raise UserError( _("Task failure with UID = %d.") % self._uid)