|
|
@ -68,7 +68,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;
|
|
|
@ -373,7 +373,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;
|
|
|
@ -747,7 +747,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;
|
|
|
@ -1504,7 +1504,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;
|
|
|
|