blob: 66b775a91788f7c7bae51da357b064779ebe8b91 [file] [log] [blame]
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +05301import frappe
2
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +05303
4def get_context(context):
5 context.no_cache = 1
6
Ankush Menat494bd9e2022-03-28 18:52:46 +05307 task = frappe.get_doc("Task", frappe.form_dict.task)
Ankush Menat4551d7d2021-08-19 13:41:10 +05308
Ankush Menat494bd9e2022-03-28 18:52:46 +05309 context.comments = frappe.get_all(
10 "Communication",
11 filters={"reference_name": task.name, "comment_type": "comment"},
12 fields=["subject", "sender_full_name", "communication_date"],
13 )
Ankush Menat4551d7d2021-08-19 13:41:10 +053014
15 context.doc = task