From e87482ac86e0b37d51b4f123f5864bb4c3391f16 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 26 Jul 2012 12:48:26 +0530 Subject: [PATCH] Fixed: Lead Lost Reason message --- erpnext/selling/doctype/lead/lead.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/doctype/lead/lead.py b/erpnext/selling/doctype/lead/lead.py index ba15624fca9..166e4fa7065 100644 --- a/erpnext/selling/doctype/lead/lead.py +++ b/erpnext/selling/doctype/lead/lead.py @@ -68,7 +68,7 @@ class DocType: def validate(self): import string if self.doc.status == 'Lead Lost' and not self.doc.order_lost_reason: - msgprint("Please Enter Quotation Lost Reason") + msgprint("Please Enter Lost Reason under More Info section") raise Exception if self.doc.source == 'Campaign' and not self.doc.campaign_name and session['user'] != 'Guest':