[IMP] mail_quoted_reply: set email author as default reply partner

pull/1165/head
jb 2023-06-21 16:30:55 +02:00 committed by Borruso
parent 7bb5f94c21
commit a1fcd2a151
2 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -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()