From efc2c327cfff0e1c7f988726a1fdb7fcd86e58aa Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 16 Nov 2011 14:24:31 +0530 Subject: [PATCH] Update erpnext/selling/doctype/quotation/quotation.py --- erpnext/selling/doctype/quotation/quotation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py index eb0452942a4..f76f5208863 100644 --- a/erpnext/selling/doctype/quotation/quotation.py +++ b/erpnext/selling/doctype/quotation/quotation.py @@ -136,7 +136,7 @@ class DocType(TransactionBase): chk_dupl_itm = [] for d in getlist(self.doclist,'quotation_details'): if [cstr(d.item_code),cstr(d.description)] in chk_dupl_itm: - msgprint("Item %s has been entered twice." % d.item_code) + msgprint("Item %s has been entered twice. Please change atleast description to continue" % d.item_code) raise Exception else: chk_dupl_itm.append([cstr(d.item_code),cstr(d.description)])