@@ -204,6 +204,7 @@ class EquipmentInfoService(Service):
result = []
for sp in raw_info.get('data'):
- result.append({'id': sp.get('id')})
+ if sp.get('isControlled'):
+ result.append({'id': sp.get('id')})
return result