commit | 00f6aef947f2a9726ef2cb2e3b99e0736881e287 | [log] [tgz] |
---|---|---|
author | Faris Ansari <netchampfaris@users.noreply.github.com> | Thu Aug 30 18:54:28 2018 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Thu Aug 30 18:54:28 2018 +0530 |
tree | 73198a77105c285a3cc5d3ba46d5c1ad8795edd9 | |
parent | 49f9747385b71a66402474b7edeccc896e84a0de [diff] |
fix(publish items): Filter out disabled items (#15268)
diff --git a/erpnext/hub_node/api.py b/erpnext/hub_node/api.py index be81eff..2a05dd2 100644 --- a/erpnext/hub_node/api.py +++ b/erpnext/hub_node/api.py
@@ -50,6 +50,7 @@ 'Item', fields=["*"], filters={ + 'disabled': 0, 'item_name': ['like', '%' + search_value + '%'], 'publish_in_hub': 0 },