feat: 添加提现积分不足的错误处理逻辑

This commit is contained in:
lingling 2025-03-06 12:38:43 +08:00
parent 19327aacf3
commit 8eef1f1ac7
1 changed files with 3 additions and 1 deletions

View File

@ -116,7 +116,9 @@ class WithdrawController
return ApiResponseApp::error(null, '每天只能提现三次'); return ApiResponseApp::error(null, '每天只能提现三次');
} }
$user = User::find($user_id); $user = User::find($user_id);
if($money_no>$user->money){
return ApiResponseApp::error(null, '提现积分不足');
}
//提现金额 //提现金额
$rate = ExchangeRate::where('type', 'BDT')->get(); $rate = ExchangeRate::where('type', 'BDT')->get();
$money = $money_no / 100 * $rate[0]['points']; $money = $money_no / 100 * $rate[0]['points'];