瀏覽代碼

用户提现申请

linhaohong 1 年之前
父節點
當前提交
67eca4b687
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      AdminController/CloudServiceManage/AgentCustomerController.py

+ 2 - 2
AdminController/CloudServiceManage/AgentCustomerController.py

@@ -748,8 +748,8 @@ class AgentCustomerView(View):
             # 可提现余额 = 总余额 - 冻结金额
             available_balance = total_profit - frozen_amount
 
-            if amount < available_balance:
-                return response.json(173, '余额不足,无法提现')
+            if amount > available_balance:
+                return response.json(173, f'余额不足,无法提现')
 
             # 提交提现申请
             acc = AgentCustomerCard.objects.filter(ac_id=ac_id).first()