|
@@ -433,7 +433,7 @@ class DetectControllerViewV2(View):
|
|
|
p['ai_event_type_list'] = []
|
|
|
if p['eventType'] in ai_all_event_type: # 如果是ai消息类型,则分解eventType, 如:123 -> [1,2,3]
|
|
|
p['ai_event_type_list'] = list(map(int, str(p['eventType'])))
|
|
|
- p['combo_event_types'] = EquipmentInfoService.get_combo_types(p['eventType'])
|
|
|
+ p['ai_event_type_list'] += EquipmentInfoService.get_combo_types(p['eventType'])
|
|
|
res.append(p)
|
|
|
return response.json(0, {'datas': res, 'count': count})
|
|
|
except Exception as e:
|