mirror of https://github.com/OCA/social.git
27 lines
1.0 KiB
Python
27 lines
1.0 KiB
Python
# Copyright 2024 Moduon Team S.L. <info@moduon.team>
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class MailMessageSchedule(models.Model):
|
|
_inherit = "mail.message.schedule"
|
|
|
|
def _send_notifications(self, default_notify_kwargs=None):
|
|
"""Avoid deferring notifications when they should be sent."""
|
|
_self = self.with_context(mail_defer_seconds=0)
|
|
return super(MailMessageSchedule, _self)._send_notifications(
|
|
default_notify_kwargs=default_notify_kwargs
|
|
)
|
|
|
|
def _group_by_model(self):
|
|
"""Make sure only mail.thread children are grouped with model."""
|
|
result = super()._group_by_model()
|
|
for model, records in result.copy().items():
|
|
# Move records without mail.thread mixin to a False key
|
|
if model and not hasattr(self.env.get(model), "_notify_thread"):
|
|
result.pop(model)
|
|
result.setdefault(False, self.browse())
|
|
result[False] += records
|
|
return result
|