|
@@ -204,6 +204,7 @@ class EquipmentInfoService(Service):
|
|
|
|
|
|
result = []
|
|
result = []
|
|
for sp in raw_info.get('data'):
|
|
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
|
|
return result
|