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.

50 lines
1.9 KiB

  1. # -*- coding: utf-8 -*-
  2. # © 2016 Antonio Espinosa - <antonio.espinosa@tecnativa.com>
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. from odoo import models, api, fields
  5. class ResPartner(models.Model):
  6. _inherit = 'res.partner'
  7. # tracking_emails_count and email_score are non-store fields in order
  8. # to improve performance
  9. # email_bounced is store=True and index=True field in order to filter
  10. # in tree view for processing bounces easier
  11. tracking_emails_count = fields.Integer(
  12. compute='_compute_tracking_emails_count', readonly=True)
  13. email_bounced = fields.Boolean(index=True)
  14. email_score = fields.Float(compute='_compute_email_score', readonly=True)
  15. @api.depends('email')
  16. def _compute_email_score(self):
  17. for partner in self.filtered('email'):
  18. partner.email_score = self.env['mail.tracking.email'].\
  19. email_score_from_email(partner.email)
  20. @api.multi
  21. @api.depends('email')
  22. def _compute_tracking_emails_count(self):
  23. for partner in self:
  24. count = 0
  25. if partner.email:
  26. count = self.env['mail.tracking.email'].search_count([
  27. ('recipient_address', '=', partner.email.lower())
  28. ])
  29. partner.tracking_emails_count = count
  30. @api.multi
  31. def email_bounced_set(self, tracking_email, reason):
  32. """Inherit this method to make any other actions to partners"""
  33. partners = self.filtered(lambda r: not r.email_bounced)
  34. return partners.write({'email_bounced': True})
  35. def write(self, vals):
  36. email = vals.get('email')
  37. if email is not None:
  38. vals['email'] = email.lower() if email else False
  39. vals['email_bounced'] = (
  40. bool(email) and
  41. self.env['mail.tracking.email'].email_is_bounced(email))
  42. return super(ResPartner, self).write(vals)