Merge PR #1517 into 16.0

Signed-off-by yajo
16.0
OCA-git-bot 2025-03-18 12:11:59 +00:00
commit 00aed3621e
1 changed files with 3 additions and 1 deletions

View File

@ -73,7 +73,9 @@ class MailMail(models.Model):
# recipients from any Notification Type (i.e. email, inbox, etc.)
recipients = mail.notification_ids.res_partner_id
record = self.env[mail.model].browse(mail.res_id)
company = getattr(record, "company_id", self.env.company)
company = getattr(record, "company_id", False)
if not company:
company = self.env.company
show_internal_users = company and company.show_internal_users_cc
show_in_cc_recipients = recipients._filter_shown_in_cc(show_internal_users)
if len(show_in_cc_recipients) <= 1: