From f579cf98712be986caf72dc09e707ef44fd2aa22 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 13 Apr 2015 16:58:47 +0530 Subject: [PATCH] [opportunity] status open --- erpnext/startup/notifications.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/startup/notifications.py b/erpnext/startup/notifications.py index 2886ab1e3d..e847cfa1c9 100644 --- a/erpnext/startup/notifications.py +++ b/erpnext/startup/notifications.py @@ -12,8 +12,8 @@ def get_notification_config(): "Task": {"status": "Open"}, "Lead": {"status": "Open"}, "Contact": {"status": "Open"}, - "Opportunity": {"docstatus": 0}, - "Quotation": {"status": "Open"}, + "Opportunity": {"status": "Open"}, + "Quotation": {"docstatus": 0}, "Sales Order": { "per_delivered": ("<", 100), "status": ("!=", "Stopped"), "docstatus": ("<", 2) }, "Journal Entry": {"docstatus": 0}, "Sales Invoice": { "outstanding_amount": (">", 0), "docstatus": ("<", 2) },