[IMP] mail_activity_team: Force team on schedule

If you schedule an activity and you don't force the team as False, errors might araise.
For example, on holidays.
This commit is contained in:
Olga Marco 2022-06-13 10:41:41 +02:00 committed by Enric Tobella
parent c3c52d7384
commit 589f0f7f38

View File

@ -72,9 +72,7 @@ class MailActivityMixin(models.AbstractModel):
.with_context(default_res_model=self._name,)
._get_default_team_id(user_id=user_id)
)
# Even if it comes empty, we don't want to mismatch the user's team
if team:
act_values.update({"team_id": team.id})
act_values.update({"team_id": team.id})
return super().activity_schedule(
act_type_xmlid=act_type_xmlid,
date_deadline=date_deadline,