feat: 更新 WithdrawController 类,优化状态文本为可翻译字符串

This commit is contained in:
lingling 2025-03-08 20:26:08 +08:00
parent 5d53412cfd
commit 73b731ed88
1 changed files with 4 additions and 4 deletions

View File

@ -147,7 +147,7 @@ class WithdrawController
if ($res->Success) { if ($res->Success) {
$withdraw->update([ $withdraw->update([
'status' => 4, // 'status' => 4, //
'status_text' => '等待银行打款', 'status_text' => trans('等待银行打款'),
'order_number' => $res->TrackingNumber ?? null, 'order_number' => $res->TrackingNumber ?? null,
]); ]);
return ApiResponseApp::success(null, '转账成功'); return ApiResponseApp::success(null, '转账成功');
@ -182,7 +182,7 @@ class WithdrawController
} }
$withdraw->update([ $withdraw->update([
'status' => 5, // 'status' => 5, //
'status_text' => '支付错误:'.$res->ErrorMessage 'status_text' => trans('支付错误:').$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") {
@ -218,12 +218,12 @@ class WithdrawController
UserRewardDao::base($withdraw->user_id, 1, $money, '提现失败返还'); UserRewardDao::base($withdraw->user_id, 1, $money, '提现失败返还');
$withdraw->update([ $withdraw->update([
'status' => 5, 'status' => 5,
'status_text' => '支付失败: ' . $failedMessage, 'status_text' => trans('支付错误:') . $failedMessage,
]); ]);
} else { } else {
$withdraw->update([ $withdraw->update([
'status' => 2, 'status' => 2,
'status_text' => '已到账', 'status_text' => trans('已到账'),
]); ]);
} }
} }