commit | 41c8cf645ae38e201646523a43aab5f38af426f9 | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Tue Dec 08 14:50:24 2015 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Tue Dec 08 14:50:24 2015 +0530 |
tree | d677607809b77af96619cb011af2908d8c097cb0 | |
parent | 06db236aa0c6eb728acd7132deafd68a229be60e [diff] |
[fix] Get incoming rate if args as json
diff --git a/erpnext/stock/utils.py b/erpnext/stock/utils.py index 0d95c58..3f9de86 100644 --- a/erpnext/stock/utils.py +++ b/erpnext/stock/utils.py
@@ -92,6 +92,9 @@ def get_incoming_rate(args): """Get Incoming Rate based on valuation method""" from erpnext.stock.stock_ledger import get_previous_sle + + if isinstance(args, basestring): + args = json.loads(args) in_rate = 0 if (args.get("serial_no") or "").strip():