blob: d1a70e14c3bde3662de3cad03013dc304ce8c3ef [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
7 task = frappe.get_doc('Task', frappe.form_dict.task)
Ankush Menat4551d7d2021-08-19 13:41:10 +05308
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +05309 context.comments = frappe.get_all('Communication', filters={'reference_name': task.name, 'comment_type': 'comment'},
10 fields=['subject', 'sender_full_name', 'communication_date'])
Ankush Menat4551d7d2021-08-19 13:41:10 +053011
12 context.doc = task