|
@@ -50,12 +50,6 @@ class AiView(View):
|
|
|
return response.json(444, 'error path')
|
|
|
elif operation == 'identification': # ai识别
|
|
|
return self.do_ai_identification(request.POST, response)
|
|
|
- elif operation == 'doPayPalCallBack': # paypal支付回调
|
|
|
- return self.do_pay_by_paypal_callback(request_dict, response)
|
|
|
- elif operation == 'doAlipayCallBack': # 支付宝支付回调
|
|
|
- return self.do_alipay_callback(request_dict, response)
|
|
|
- elif operation == 'doWechatCallBack': # 微信支付回调
|
|
|
- return self.do_wechat_callback(request, response)
|
|
|
else:
|
|
|
token = request_dict.get('token', None)
|
|
|
# 设备主键uid
|
|
@@ -358,7 +352,8 @@ class AiView(View):
|
|
|
# exit(new_bounding_box_list)
|
|
|
conform_user_d_group = list(conform_user_d_group)
|
|
|
if len(conform_user_d_group) > 1:
|
|
|
- eventType = 123 # 组合类型
|
|
|
+ conform_user_d_group.sort()
|
|
|
+ eventType = ''.join(conform_user_d_group) # 组合类型
|
|
|
else:
|
|
|
eventType = conform_user_d_group[0]
|
|
|
|