# Copyright 2016 Antonio Espinosa - # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import api, fields, models class ResPartner(models.Model): _name = "res.partner" _inherit = ["res.partner", "mail.bounced.mixin"] # tracking_emails_count and email_score are non-store fields in order # to improve performance tracking_emails_count = fields.Integer( compute="_compute_email_score_and_count", readonly=True ) email_score = fields.Float(compute="_compute_email_score_and_count", readonly=True) @api.depends("email") def _compute_email_score_and_count(self): self.email_score = 50.0 self.tracking_emails_count = 0 partners_mail = self.filtered("email") mt_obj = self.env["mail.tracking.email"].sudo() for partner in partners_mail: partner.email_score = mt_obj.email_score_from_email(partner.email) # We don't want performance issues due to heavy ACLs check for large # recordsets. Our option is to hide the number for regular users. if not self.env.user.has_group("base.group_system"): continue partner.tracking_emails_count = len( mt_obj._search([("recipient_address", "=", partner.email.lower())]) )