commit | 93e82b8742b7d7a069ad5879490448e1102a0896 | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Fri Jul 20 10:40:14 2012 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Fri Jul 20 10:40:14 2012 +0530 |
tree | 315e2f82ef8b9a3e4245c420baa7bc7ab797794e | |
parent | bbc2d44241eb0b552e2acd07dd1ca28a17f6cdd4 [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))