fix: 修改提现逻辑中的注释和错误提示信息
This commit is contained in:
parent
3d7865aef6
commit
66f74cb830
|
@ -129,7 +129,7 @@ class WithdrawController
|
||||||
'username' => $user->username,
|
'username' => $user->username,
|
||||||
'status_text' => '申请中',
|
'status_text' => '申请中',
|
||||||
]);
|
]);
|
||||||
//大于1000等待管理员审核
|
//大于1000积分等待管理员审核
|
||||||
if ($money_no >= 100000) {
|
if ($money_no >= 100000) {
|
||||||
//用户积分减少$money
|
//用户积分减少$money
|
||||||
UserRewardDao::base($user_id, 1, - ($money_no + self::$handlingFee), '提现');
|
UserRewardDao::base($user_id, 1, - ($money_no + self::$handlingFee), '提现');
|
||||||
|
@ -178,13 +178,13 @@ class WithdrawController
|
||||||
}
|
}
|
||||||
$withdraw->update([
|
$withdraw->update([
|
||||||
'status' => 5, //
|
'status' => 5, //
|
||||||
'status_text' => '支付错误:'.$errorMsg
|
'status_text' => '支付错误:'.$res->ErrorMessage
|
||||||
]);
|
]);
|
||||||
UserRewardDao::base($user_id, 1, $money_no + self::$handlingFee, '提现失败返还');
|
UserRewardDao::base($user_id, 1, $money_no + self::$handlingFee, '提现失败返还');
|
||||||
// if ($res->ErrorMessage == "PayeeAccountNameFormatError") {
|
// if ($res->ErrorMessage == "PayeeAccountNameFormatError") {
|
||||||
// return ApiResponseApp::error(null, '收款人帐号格式错误');
|
// return ApiResponseApp::error(null, '收款人帐号格式错误');
|
||||||
// }
|
// }
|
||||||
return ApiResponseApp::error(null, $errorMsg);
|
return ApiResponseApp::error(null, $res->ErrorMessage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue