commit | aa879311725303ac18b95bba78211b7326e78472 | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Mon Jul 27 11:40:54 2015 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Mon Aug 10 14:07:01 2015 +0530 |
tree | e4880281d4c2d1a87785230b6b5cc8ec0911ec3d | |
parent | fc155c7712974434af2a60e035f7b8a97691866b [diff] |
Show only active BOM in stock entry
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js index 04ef935..22652e6 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.js +++ b/erpnext/stock/doctype/stock_entry/stock_entry.js
@@ -10,7 +10,10 @@ this.frm.fields_dict.bom_no.get_query = function() { return { - filters:{ 'docstatus': 1 } + filters:{ + "docstatus": 1, + "is_active": 1 + } }; };