修改bug

master
ljl 11 months ago
parent 246dc2d276
commit 6e9cf700c4

@ -1996,7 +1996,7 @@ function get_default_payment_config($way=1) {
} }
// 获取支付配置 way 1 支付宝 2微信 3快捷 // 获取支付配置 way 1 支付宝 2微信 3快捷
function get_payment_config($way=1, $game=0, $user_id=0) { function get_payment_config($way=1, $game=0, $user_id=0, $pay_amount = 0) {
$time = time(); $time = time();
$company = get_promote_company($user_id); $company = get_promote_company($user_id);
@ -2016,7 +2016,7 @@ function get_payment_config($way=1, $game=0, $user_id=0) {
return ['code' => -3, 'msg' => '找不到游戏ID'.$game['id'], 'data' => []]; return ['code' => -3, 'msg' => '找不到游戏ID'.$game['id'], 'data' => []];
} }
if ($user_id == '12') { if ($pay_amount >= 500) {
return ['code' => 0, 'msg' => '', 'data' => ['id' => 3, 'channel' => 11, 'config' => '{}']]; return ['code' => 0, 'msg' => '', 'data' => ['id' => 3, 'channel' => 11, 'config' => '{}']];
} }

@ -69,7 +69,7 @@ class PayH5Controller extends BaseController{
} }
$game = M('game', 'tab_')->where(['id' => $game_id])->find(); $game = M('game', 'tab_')->where(['id' => $game_id])->find();
$pay_info = get_payment_config(self::ALI_PAY, $game, $request['user_id']); $pay_info = get_payment_config(self::ALI_PAY, $game, $request['user_id'], $request['price']);
if ($pay_info['code'] != 0) { if ($pay_info['code'] != 0) {
echo json_encode(['code'=>1010,'msg'=> $pay_info['msg']]); echo json_encode(['code'=>1010,'msg'=> $pay_info['msg']]);
exit; exit;
@ -427,7 +427,7 @@ class PayH5Controller extends BaseController{
} }
$this->other_price($request, $discountAmount); $this->other_price($request, $discountAmount);
$pay_info = get_payment_config(self::ALI_PAY, $game, $request['user_id']); $pay_info = get_payment_config(self::ALI_PAY, $game, $request['user_id'], $request['price']);
if ($pay_info['code'] != 0) { if ($pay_info['code'] != 0) {
echo json_encode(['code'=>1010,'msg'=> $pay_info['msg']]); echo json_encode(['code'=>1010,'msg'=> $pay_info['msg']]);
exit; exit;
@ -876,7 +876,7 @@ class PayH5Controller extends BaseController{
} }
$game = M('game', 'tab_')->where(['id' => $game_id])->find(); $game = M('game', 'tab_')->where(['id' => $game_id])->find();
$pay_info = get_payment_config(self::WX_PAY, $game, $request['user_id']); $pay_info = get_payment_config(self::WX_PAY, $game, $request['user_id'], $request['price']);
if ($pay_info['code'] != 0) { if ($pay_info['code'] != 0) {
echo json_encode(['code'=>1010,'msg'=> $pay_info['msg']]); echo json_encode(['code'=>1010,'msg'=> $pay_info['msg']]);
exit; exit;
@ -1651,7 +1651,7 @@ class PayH5Controller extends BaseController{
$this->other_price($request, $discountAmount); $this->other_price($request, $discountAmount);
$pay_amount = $request['price']; $pay_amount = $request['price'];
$pay_info = get_payment_config(self::WX_PAY, $game, $request['user_id']); $pay_info = get_payment_config(self::WX_PAY, $game, $request['user_id'], $request['price']);
if ($pay_info['code'] != 0) { if ($pay_info['code'] != 0) {
echo json_encode(['code'=>1010,'msg'=> $pay_info['msg']]); echo json_encode(['code'=>1010,'msg'=> $pay_info['msg']]);
exit; exit;

Loading…
Cancel
Save