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
3 changes: 3 additions & 0 deletions helpdesk/helpdesk/doctype/hd_ticket/hd_ticket.py
Original file line number Diff line number Diff line change
Expand Up @@ -887,6 +887,9 @@ def on_communication_update(self, c):
self.status = self.default_open_status
# If communication is outgoing, it must be a reply from agent
if c.sent_or_received == "Sent":
# Ignore system notifications
if c.communication_type and c.communication_type == "Automated Message":
return
# Set first response date if not set already
self.first_responded_on = (
self.first_responded_on or frappe.utils.now_datetime()
Expand Down
Loading