mirror of https://github.com/OCA/social.git
[IMP] mail_quoted_reply: set email author as default reply partner
parent
7bb5f94c21
commit
a1fcd2a151
|
@ -34,6 +34,9 @@ class MailMessage(models.Model):
|
|||
str_from=_("From"),
|
||||
)
|
||||
|
||||
def _default_reply_partner(self):
|
||||
return self.env["res.partner"].find_or_create(self.email_from).ids
|
||||
|
||||
def reply_message(self):
|
||||
action = self.env["ir.actions.actions"]._for_xml_id(
|
||||
"mail.action_email_compose_message_wizard"
|
||||
|
@ -48,7 +51,7 @@ class MailMessage(models.Model):
|
|||
"is_quoted_reply": True,
|
||||
"default_notify": True,
|
||||
"force_email": True,
|
||||
"default_partner_ids": self.partner_ids.ids,
|
||||
"default_partner_ids": self._default_reply_partner(),
|
||||
}
|
||||
|
||||
# If the original message had a subject, we use it as a base for the
|
||||
|
|
|
@ -33,7 +33,7 @@ class TestMessageReply(TransactionCase):
|
|||
self.env[action["res_model"]].with_context(**action["context"]).create({})
|
||||
)
|
||||
self.assertTrue(wizard.partner_ids)
|
||||
self.assertEqual(message.partner_ids, wizard.partner_ids)
|
||||
self.assertEqual(message.email_from, wizard.partner_ids.email_formatted)
|
||||
# the onchange in the composer isn't triggered in tests, so we check for the
|
||||
# correct quote in the context
|
||||
email_quote = re.search("<p>.*?</p>", wizard._context["quote_body"]).group()
|
||||
|
|
Loading…
Reference in New Issue