|
@@ -52,6 +52,8 @@ class serveManagement(View):
|
|
return self.vodOrderReconcile(request, request_dict, response)
|
|
return self.vodOrderReconcile(request, request_dict, response)
|
|
elif operation == 'cloudDataExport': # 导出流失预警
|
|
elif operation == 'cloudDataExport': # 导出流失预警
|
|
return self.cloudDataExport(request, response)
|
|
return self.cloudDataExport(request, response)
|
|
|
|
+ elif operation == 'getDeviceOrderList':
|
|
|
|
+ return self.getDeviceOrderList(request_dict, response)
|
|
else:
|
|
else:
|
|
tko = TokenObject(
|
|
tko = TokenObject(
|
|
request.META.get('HTTP_AUTHORIZATION'),
|
|
request.META.get('HTTP_AUTHORIZATION'),
|
|
@@ -120,8 +122,6 @@ class serveManagement(View):
|
|
elif operation == 'deleteCouponUsing': # 删除优惠券使用
|
|
elif operation == 'deleteCouponUsing': # 删除优惠券使用
|
|
return self.deleteCouponUsing(request_dict, response)
|
|
return self.deleteCouponUsing(request_dict, response)
|
|
|
|
|
|
- elif operation == 'getDeviceOrderList':
|
|
|
|
- return self.getDeviceOrderList(request_dict, response)
|
|
|
|
elif operation == 'getAbnormalOrderList':
|
|
elif operation == 'getAbnormalOrderList':
|
|
return self.getAbnormalOrderList(request_dict, response)
|
|
return self.getAbnormalOrderList(request_dict, response)
|
|
elif operation == 'updateAbnormalOrder':
|
|
elif operation == 'updateAbnormalOrder':
|