FIX mail_show_follower: ValueError: Expected singleton: res.users
This commit is contained in:
parent
c7a1b4f501
commit
e7eeb2c5b6
@ -32,7 +32,8 @@ class MailMail(models.Model):
|
||||
).mapped('partner_id').ids
|
||||
partners_len = len(partners_obj.filtered(
|
||||
lambda x: x.id not in user_partner_ids and (
|
||||
not x.user_ids or group_portal in x.user_ids.groups_id
|
||||
not x.user_ids or
|
||||
group_portal in x.user_ids.mapped("groups_id")
|
||||
)))
|
||||
if partners_len > 1:
|
||||
# get partners
|
||||
@ -54,7 +55,7 @@ class MailMail(models.Model):
|
||||
partners = partners_obj.filtered(
|
||||
lambda x: x.id not in user_partner_ids and (
|
||||
not x.user_ids or group_portal in
|
||||
x.user_ids.groups_id
|
||||
x.user_ids.mapped("groups_id")
|
||||
)
|
||||
)
|
||||
partners = partners.filtered(
|
||||
|
Loading…
Reference in New Issue
Block a user