commit | 502189913a5339bd43ea166457ab70b65bfc7bf3 | [log] [tgz] |
---|---|---|
author | Rohit Waghchaure <rohitw1991@gmail.com> | Sat Dec 07 14:10:11 2019 +0530 |
committer | Rohit Waghchaure <rohitw1991@gmail.com> | Sat Dec 07 14:10:11 2019 +0530 |
tree | 57519ac645d0600d0e70c956450b67d010c5eb3d | |
parent | 690068142b786f16045ffca0caa8423e7e07af42 [diff] |
fix: 'NoneType' object is not iterable
diff --git a/erpnext/manufacturing/doctype/production_plan/production_plan.py b/erpnext/manufacturing/doctype/production_plan/production_plan.py index 25c385f..8876253 100644 --- a/erpnext/manufacturing/doctype/production_plan/production_plan.py +++ b/erpnext/manufacturing/doctype/production_plan/production_plan.py
@@ -615,6 +615,9 @@ doc['mr_items'] = [] po_items = doc.get('po_items') if doc.get('po_items') else doc.get('items') + if not po_items: + frappe.throw(_("Items are required to pull the raw materials which is associated with it.")) + company = doc.get('company') warehouse = doc.get('for_warehouse')