Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 53 additions & 1 deletion interaction_resume/models/crm_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,29 @@ def _get_interaction_data(self, partner_id):
| partner.other_contact_ids
)
for claim in self:
# Contactus form if applicable
res.append(
{
"partner_id": partner_id,
"res_model": self._name,
"res_id": claim.id,
"direction": "in",
"date": claim.date or claim.create_date,
"email": claim.email_from or claim.partner_id.email,
"communication_type": "Support",
"subject": "CRM Request: " + str(claim.name),
"body": html2plaintext(claim.description).replace("\n\n", "\n"),
"has_attachment": False,
"tracking_status": False,
}
)

# Other messages
messages = claim.message_ids.filtered(
lambda m: (m.partner_ids & partners) or m.author_id in partners
).filtered("subject")
if claim.incoming_message_id in messages:
messages -= claim.incoming_message_id
res.extend(
[
{
Expand Down Expand Up @@ -59,10 +79,42 @@ def _get_interaction_partner_domain(self, partner):
("email_from", "=", partner.email),
]

@api.model_create_multi
def create(self, vals_list):
"""
Override create to trigger timeline update for anonymous users by email
"""
claims = super().create(vals_list)
for claim in claims:
partner_to_update = claim.partner_id
# If no partner_id, try to find a partner using email
if not partner_to_update and claim.email_from:
partner_to_update = self.env["res.partner"].search(
[("email", "=", claim.email_from)], limit=1
)

if partner_to_update:
partner_to_update.with_delay(
channel="root.partner_communication",
priority=100,
identity_key=partner_to_update._name
+ ".fetch_interactions."
+ str(partner_to_update.id),
).fetch_interactions()
return claims

@api.returns("mail.message", lambda value: value.id)
def message_post(self, **kwargs):
res = super().message_post(**kwargs)
if self.partner_id:

partner_to_update = self.partner_id
# If no partner_id, try to find a partner using email
if not partner_to_update:
partner_to_update = self.env["res.partner"].search(
"email", "=", self.email_from, limit=1
)

if partner_to_update:
self.partner_id.with_delay(
channel="root.partner_communication",
priority=100,
Expand Down
Loading