[FIX] mail_show_follower: Company identification in _send()

Before this commit, 'Show Internal Users CC' would always be False,
regardless of the setting in the company, in case the message came
from a record with a company_id field but without a value assignment to
it (e.g., a partner record with no company), as company would be an
empty record.

This commit fixes the behavior by capturing company from self.env in
these cases.
pull/1517/head
nobuQuartile 2024-12-05 06:51:53 +00:00
parent 493f4e0228
commit 01b20b7393
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: