|
@@ -89,14 +89,20 @@ class AgentCustomerView(View):
|
|
|
|
|
|
elif operation == 'getAgentSettleOrders':
|
|
|
return self.get_agent_settle_order(userID, request_dict, response)
|
|
|
+ elif operation == 'getDataStatistics':
|
|
|
+ return self.get_data_statistics(userID, response)
|
|
|
+
|
|
|
+ # 代理商提现功能
|
|
|
elif operation == 'getAgentAccountWithdraw':
|
|
|
return self.get_agent_account_withdraw(userID, request_dict, response)
|
|
|
elif operation == 'getCheckBalance':
|
|
|
return self.get_check_balance(userID, response)
|
|
|
- elif operation == 'getDataStatistics':
|
|
|
- return self.get_data_statistics(userID, response)
|
|
|
elif operation == 'agentApplyWithdraw':
|
|
|
return self.agent_apply_withdraw(userID, request_dict, response)
|
|
|
+ elif operation == 'getWithdrawalReview':
|
|
|
+ return self.get_withdrawal_review(request_dict, response)
|
|
|
+ elif operation == 'updateWithdrawalReview':
|
|
|
+ return self.update_withdrawal_review(userID, request_dict, response)
|
|
|
else:
|
|
|
return response.json(444, 'operation')
|
|
|
|