feat: 添加提现积分不足的错误处理逻辑
This commit is contained in:
parent
19327aacf3
commit
8eef1f1ac7
|
@ -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'];
|
||||||
|
|
Loading…
Reference in New Issue