commit | dba5e7645b03104524429ba60a29d8bdfcfe4100 | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Tue Jan 30 16:38:47 2018 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Tue Jan 30 16:38:47 2018 +0530 |
tree | d413f34fd7797e900b834f98500b7f3a4925506c | |
parent | 927d13fadbfa0c813718bfca8373e2d705e7717b [diff] |
Minor fix in old patch
diff --git a/erpnext/manufacturing/doctype/production_order/production_order.py b/erpnext/manufacturing/doctype/production_order/production_order.py index 7cfbab0..d3b7c5a 100644 --- a/erpnext/manufacturing/doctype/production_order/production_order.py +++ b/erpnext/manufacturing/doctype/production_order/production_order.py
@@ -490,7 +490,7 @@ and detail.parent = entry.name and detail.item_code = %s''', (self.name, d.item_code))[0][0] - d.db_set('transferred_qty', transferred_qty, update_modified = False) + d.db_set('transferred_qty', flt(transferred_qty), update_modified = False) @frappe.whitelist()