commit | 1030af7b484c20ffcfd7e39814796a6170a9c8b5 | [log] [tgz] |
---|---|---|
author | Anand Doshi <anand@erpnext.com> | Thu Jun 26 12:07:55 2014 +0530 |
committer | Anand Doshi <anand@erpnext.com> | Thu Jun 26 12:07:55 2014 +0530 |
tree | c867b5fcaea28691a52646d24ec7b8b59d343527 | |
parent | 994f0c3d4938e23781df6a3ebda83f77f9311afb [diff] |
Material Request: fixed series issue in insert_purchase_request
diff --git a/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py b/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py index a59e0e9..e96dcbb 100644 --- a/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +++ b/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py
@@ -370,10 +370,8 @@ if items_to_be_requested: for item in items_to_be_requested: item_wrapper = frappe.get_doc("Item", item) - pr_doc = frappe.get_doc({ - "doctype": "Material Request", - "__islocal": 1, - "naming_series": "IDT", + pr_doc = frappe.new_doc("Material Request") + pr_doc.update({ "transaction_date": nowdate(), "status": "Draft", "company": self.company,