commit | 486a8f67a4b0160f6031fa483f6916b43630aef3 | [log] [tgz] |
---|---|---|
author | Rohit Waghchaure <rohitw1991@gmail.com> | Wed Oct 30 14:22:49 2019 +0530 |
committer | Rohit Waghchaure <rohitw1991@gmail.com> | Wed Oct 30 14:22:49 2019 +0530 |
tree | 4db276ad3c08e6427b60e74af9cf2dec86ba094b | |
parent | 9942fcc8cb8d2d45ebd285b4876e2f69c725f897 [diff] |
fix: not able to select the project in the work order
diff --git a/erpnext/manufacturing/doctype/work_order/work_order.js b/erpnext/manufacturing/doctype/work_order/work_order.js index 1789a1f..cdbce33 100644 --- a/erpnext/manufacturing/doctype/work_order/work_order.js +++ b/erpnext/manufacturing/doctype/work_order/work_order.js
@@ -342,7 +342,7 @@ }, project: function(frm) { - if(!erpnext.in_production_item_onchange) { + if(!erpnext.in_production_item_onchange && !frm.doc.bom_no) { frm.trigger("production_item"); } },