You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# -*- coding: utf-8 -*- # © 2016 Antonio Espinosa - <antonio.espinosa@tecnativa.com> # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openerp import models, api
class MailMail(models.Model): _inherit = 'mail.mail'
@api.model def _postprocess_sent_message(self, mail, mail_sent=True): # Read before super, because mail will be removed if sent successfully stats = mail.statistics_ids res = super(MailMail, self)._postprocess_sent_message( mail, mail_sent=mail_sent) for stat in stats.filtered( lambda r: r.mass_mailing_sending_id.state == 'sending'): stat.mass_mailing_sending_id._process_sending() return res
|