diff --git a/crm/api/activities.py b/crm/api/activities.py index ead84b1f..31d74580 100644 --- a/crm/api/activities.py +++ b/crm/api/activities.py @@ -125,6 +125,7 @@ def get_deal_activities(name): "bcc": communication.bcc, "attachments": get_attachments('Communication', communication.name), "read_by_recipient": communication.read_by_recipient, + "delivery_status": communication.delivery_status, }, "is_lead": False, } @@ -238,6 +239,7 @@ def get_lead_activities(name): "bcc": communication.bcc, "attachments": get_attachments('Communication', communication.name), "read_by_recipient": communication.read_by_recipient, + "delivery_status": communication.delivery_status, }, "is_lead": True, } diff --git a/crm/api/doc.py b/crm/api/doc.py index a5a7c51e..84a84458 100644 --- a/crm/api/doc.py +++ b/crm/api/doc.py @@ -685,6 +685,7 @@ def get_fields(doctype: str, allow_all_fieldtypes: bool = False): "depends_on": field.depends_on, "mandatory_depends_on": field.mandatory_depends_on, "read_only_depends_on": field.read_only_depends_on, + "link_filters": field.get("link_filters"), }) return _fields diff --git a/frontend/src/components/Activities/EmailArea.vue b/frontend/src/components/Activities/EmailArea.vue index d42db18c..33e11f16 100644 --- a/frontend/src/components/Activities/EmailArea.vue +++ b/frontend/src/components/Activities/EmailArea.vue @@ -16,6 +16,12 @@ />