Hi Friends,
I renamed Issue doctype as “Ticket” if we enter comment it should update the timestamp
Thanks in Advance
Hi Friends,
I renamed Issue doctype as “Ticket” if we enter comment it should update the timestamp
Hi @sathya_raj,
Please apply it and check the video.
if doc.comment_type == "Comment" and doc.reference_doctype == "Issue":
upd_issue = frappe.get_doc('Issue', doc.reference_name)
upd_issue.save()
Thank you so much NCP