diff --git a/erpnext/config/crm.py b/erpnext/config/crm.py index d7a6b2e2be..7b015c75f2 100644 --- a/erpnext/config/crm.py +++ b/erpnext/config/crm.py @@ -31,6 +31,11 @@ def get_data(): "name": "Newsletter", "description": _("Newsletters to contacts, leads."), }, + { + "type": "doctype", + "name": "Communication", + "description": _("Record of all communications of type email, phone, chat, visit, etc."), + }, ] }, { diff --git a/erpnext/startup/notifications.py b/erpnext/startup/notifications.py index d06537066e..c7e63f133c 100644 --- a/erpnext/startup/notifications.py +++ b/erpnext/startup/notifications.py @@ -31,6 +31,6 @@ def get_notification_config(): "BOM": {"docstatus": 0}, "Timesheet": {"docstatus": 0}, "Time Log": {"status": "Draft"}, - "Time Log Batch": {"status": "Draft"}, + "Time Log Batch": {"status": "Draft"} } }