commit | 2ae08e8fd6ad19511b3d6d64f80eef0455a0cadf | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Fri Jul 20 10:41:02 2012 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Fri Jul 20 10:41:02 2012 +0530 |
tree | c323649f816165fc201969e53750b477e42346a9 | |
parent | 5756630efbab3191c62977d31a8cf357d75c5f87 [diff] |
error fixed in landed cost wizard
diff --git a/erpnext/stock/doctype/landed_cost_wizard/landed_cost_wizard.py b/erpnext/stock/doctype/landed_cost_wizard/landed_cost_wizard.py index c2df6c1..f73845c 100644 --- a/erpnext/stock/doctype/landed_cost_wizard/landed_cost_wizard.py +++ b/erpnext/stock/doctype/landed_cost_wizard/landed_cost_wizard.py
@@ -236,7 +236,7 @@ def update_serial_no(self, sr_no, rate): """ update valuation rate in serial no""" - sr_no = sr_no.split('\n') + sr_no = cstr(sr_no).split('\n') for d in sr_no: sql("update `tabSerial No` set purchase_rate = %s where name = %s", (rate, d))