Compare commits
5 Commits
5da86322b7
...
04ba0d38d0
Author | SHA1 | Date | |
---|---|---|---|
04ba0d38d0 | |||
058cb8ba47 | |||
59e0342781 | |||
73b731ed88 | |||
5d53412cfd |
@ -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('已到账'),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,13 @@ class UserRewardDao
|
|||||||
self::base($userid, 2, $money, $memo);
|
self::base($userid, 2, $money, $memo);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 转账函数
|
*转账函数
|
||||||
|
*
|
||||||
|
* @param [type] $userid
|
||||||
|
* @param [type] $status
|
||||||
|
* @param [type] $money
|
||||||
|
* @param [type] $memo 备注
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
public static function base($userid, $status, $money, $memo)
|
public static function base($userid, $status, $money, $memo)
|
||||||
{
|
{
|
||||||
@ -78,7 +84,7 @@ class UserRewardDao
|
|||||||
$UserReward->money = $money;
|
$UserReward->money = $money;
|
||||||
$UserReward->before = $user->money;
|
$UserReward->before = $user->money;
|
||||||
$UserReward->after = $user->money + $money;
|
$UserReward->after = $user->money + $money;
|
||||||
$UserReward->memo = $memo;
|
$UserReward->memo = trans($memo);
|
||||||
$UserReward->createtime2 = date('Y-m-d H:i:s');
|
$UserReward->createtime2 = date('Y-m-d H:i:s');
|
||||||
$user->money = $UserReward->after;
|
$user->money = $UserReward->after;
|
||||||
$user->save();
|
$user->save();
|
||||||
@ -98,8 +104,7 @@ class UserRewardDao
|
|||||||
$UserReward->money = $money;
|
$UserReward->money = $money;
|
||||||
$UserReward->before = $user->money;
|
$UserReward->before = $user->money;
|
||||||
$UserReward->after = $user->money + $money;
|
$UserReward->after = $user->money + $money;
|
||||||
$UserReward->memo = $memo;
|
$UserReward->memo = trans($memo);
|
||||||
$UserReward->memo = $memo;
|
|
||||||
$UserReward->createtime2 = date('Y-m-d H:i:s');
|
$UserReward->createtime2 = date('Y-m-d H:i:s');
|
||||||
$UserReward->phone = $phone;
|
$UserReward->phone = $phone;
|
||||||
$user->money = $UserReward->after;
|
$user->money = $UserReward->after;
|
||||||
|
@ -10,7 +10,7 @@ class Lang implements MiddlewareInterface
|
|||||||
public function process(Request $request, callable $handler) : Response
|
public function process(Request $request, callable $handler) : Response
|
||||||
{
|
{
|
||||||
// 获取请求头中的 Accept-Language
|
// 获取请求头中的 Accept-Language
|
||||||
$acceptLanguage = $request->header('Accept-Language', 'zhcn'); // 默认值是 'zh_CN'
|
$acceptLanguage = $request->header('Accept-Language', 'en'); // 默认值是 'en'
|
||||||
|
|
||||||
// 将 Accept-Language 中的语言与系统支持的语言进行匹配
|
// 将 Accept-Language 中的语言与系统支持的语言进行匹配
|
||||||
// 这里假设我们支持 'zh_CN' 和 'en_US',你可以根据实际需求扩展更多语言
|
// 这里假设我们支持 'zh_CN' 和 'en_US',你可以根据实际需求扩展更多语言
|
||||||
|
@ -28,7 +28,7 @@ class Task3
|
|||||||
$user_id = $value->user_id;
|
$user_id = $value->user_id;
|
||||||
//判定有没有父级 这里父级没有默认是0
|
//判定有没有父级 这里父级没有默认是0
|
||||||
$user = User::find($user_id);
|
$user = User::find($user_id);
|
||||||
if ($user->f_id==0) {
|
if (!empty($user)&&$user->f_id==0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
//获取该用户的父级
|
//获取该用户的父级
|
||||||
|
@ -1,21 +1,32 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'挂机时长没有超过6小时,暂不能签到' => 'You have not been idle for more than 6 hours, cannot sign in yet.',
|
'挂机时长没有超过6小时,暂不能签到' => 'The idle time has not exceeded 6 hours, unable to sign in for now',
|
||||||
'您已登陆' => 'You are already logged in.',
|
'您已登陆' => 'You are already logged in',
|
||||||
'请发送验证码' => 'Please send the verification code.',
|
'请发送验证码' => 'Please send the verification code',
|
||||||
'账户余额不足' => 'Insufficient account balance.',
|
'账户余额不足' => 'Insufficient account balance',
|
||||||
'需要完成Whatsapp任务' => 'You need to complete the Whatsapp task.',
|
'需要完成Whatsapp任务' => 'You need to complete the Whatsapp task',
|
||||||
'账号或密码错误' => 'Incorrect username or password.',
|
'账号或密码错误' => 'Incorrect username or password',
|
||||||
'账号被禁用' => 'The account is disabled.',
|
'账号被禁用' => 'Account is disabled',
|
||||||
'登录成功' => 'Login successful.',
|
'登录成功' => 'Login successful',
|
||||||
'账号已存在' => 'Account already exists.',
|
'账号已存在' => 'Account already exists',
|
||||||
'代理不存在' => 'Agent does not exist.',
|
'代理不存在' => 'Agent does not exist',
|
||||||
'注册成功' => 'Registration successful.',
|
'注册成功' => 'Registration successful',
|
||||||
'原密码错误' => 'Incorrect original password.',
|
'原密码错误' => 'Incorrect original password',
|
||||||
'修改成功' => 'Modification successful.',
|
'修改成功' => 'Modification successful',
|
||||||
'领取成功' => 'Claim successful.',
|
'领取成功' => 'Successfully claimed',
|
||||||
'每天只能提现三次' => 'You can only withdraw three times a day.',
|
'每天只能提现三次' => 'You can withdraw a maximum of three times per day',
|
||||||
'等待管理员审核' => 'Waiting for administrator review.',
|
'等待管理员审核' => 'Waiting for admin review',
|
||||||
'转账成功' => 'Transfer successful.',
|
'转账成功' => 'Transfer successful',
|
||||||
|
'注册赠送' => 'Registration gift',
|
||||||
|
'挂机收益' => 'Idle earnings',
|
||||||
|
'加粉赏金' => 'Followers bonus',
|
||||||
|
'抽奖' => 'Lottery',
|
||||||
|
'中奖' => 'You won',
|
||||||
|
'签到' => 'Sign in',
|
||||||
|
'提现失败返还'=>'Refund if withdrawal fails',
|
||||||
|
'支付错误:'=>'Payment error:',
|
||||||
|
'等待银行打款'=>'Waiting for bank transfer',
|
||||||
|
'已到账'=>'Already arrived',
|
||||||
|
'提现'=>'Withdraw cash'
|
||||||
];
|
];
|
||||||
|
@ -18,4 +18,15 @@ return [
|
|||||||
'每天只能提现三次' => '每天只能提现三次',
|
'每天只能提现三次' => '每天只能提现三次',
|
||||||
'等待管理员审核' => '等待管理员审核',
|
'等待管理员审核' => '等待管理员审核',
|
||||||
'转账成功' => '转账成功',
|
'转账成功' => '转账成功',
|
||||||
|
'注册赠送'=>'注册赠送',
|
||||||
|
'挂机收益'=>'挂机收益',
|
||||||
|
'加粉赏金'=>'加粉赏金',
|
||||||
|
'抽奖'=>'抽奖',
|
||||||
|
'中奖'=>'中奖',
|
||||||
|
'签到'=>'签到',
|
||||||
|
'提现失败返还'=>'提现失败返还',
|
||||||
|
'支付错误:'=>'支付错误:',
|
||||||
|
'等待银行打款'=>'等待银行打款',
|
||||||
|
'已到账'=>'已到账',
|
||||||
|
'提现'=>'提现'
|
||||||
];
|
];
|
Loading…
x
Reference in New Issue
Block a user