|
@@ -112,6 +112,9 @@ class CloudVodView(View):
|
|
|
return self.do_filter_playlist(request_dict, userID, response)
|
|
|
elif operation == 'findVod':
|
|
|
return self.do_find_playlist(request_dict, userID, response)
|
|
|
+ # 支付宝支付
|
|
|
+ elif operation == 'aliPay':
|
|
|
+ return
|
|
|
else:
|
|
|
return response.json(414)
|
|
|
|
|
@@ -215,8 +218,10 @@ class CloudVodView(View):
|
|
|
if ubqs.exists():
|
|
|
if ubqs[0]['bucket__region'] != smqs[0]['bucket__region']:
|
|
|
return response.json(712) # 区域不一致
|
|
|
- elif ubqs[0]['bucket__storeDay'] > smqs[0]['bucket__storeDay']:
|
|
|
- return response.json(711) # 不可降级
|
|
|
+ # elif ubqs[0]['bucket__storeDay'] > smqs[0]['bucket__storeDay']:
|
|
|
+ # return response.json(711) # 不可降级
|
|
|
+ elif ubqs[0]['bucket__storeDay'] != smqs[0]['bucket__storeDay']:
|
|
|
+ return response.json(713) # 不可更改套餐
|
|
|
# 续费流程
|
|
|
nowTime = int(time.time())
|
|
|
# 判断是否存在未完成订单
|