From 7ce737be3de4f64e8991fbc44b07a350b7b8dd3d Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 27 Jun 2012 11:33:05 +0530 Subject: [PATCH] Issue fixed in stock reconciliation --- .../doctype/stock_reconciliation/stock_reconciliation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py index 384363e0fd0..0cc81ffa798 100644 --- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py @@ -62,8 +62,8 @@ class DocType: count += 1 if count == 2: if s[0] != 'Item Code' or s[1] != 'Warehouse': - msgprint("First row of the attachment always should be 'Item Code, Warehouse, Quantity \ - and Valuation Rate/Incoming Rate'", raise_exception=1) + msgprint("First row of the attachment always should be same as template(Item Code, Warehouse, Quantity \ + and Valuation Rate/Incoming Rate)", raise_exception=1) else: continue # validate @@ -199,7 +199,7 @@ class DocType: r = [cstr(i) for i in row] + [cstr(qty_diff), cstr(rate_diff)] self.store_diff_info(r) - msgprint("Stock Reconciliation Completed Successfully...") + msgprint("Stock Reconciliation Completed Successfully...") def store_diff_info(self, r):