|
@@ -272,6 +272,8 @@ class Pay extends Controller
|
|
if (!$order_no) $this->error('订单号参数错误');
|
|
if (!$order_no) $this->error('订单号参数错误');
|
|
$order_type = input('order_type'); //订单类型 1订单 2充值
|
|
$order_type = input('order_type'); //订单类型 1订单 2充值
|
|
if (!$order_type) $this->error('订单类型参数错误');
|
|
if (!$order_type) $this->error('订单类型参数错误');
|
|
|
|
+ $pay_money = input('pay_money'); //支付金额
|
|
|
|
+ if (!$pay_money) $this->error('支付金额参数错误');
|
|
// 验证参数
|
|
// 验证参数
|
|
if (strlen($receipt_data) < 20) {
|
|
if (strlen($receipt_data) < 20) {
|
|
$this->error("非法参数");
|
|
$this->error("非法参数");
|
|
@@ -304,7 +306,7 @@ class Pay extends Controller
|
|
//充值
|
|
//充值
|
|
$out_trade_no = $order_no;//订单号
|
|
$out_trade_no = $order_no;//订单号
|
|
$order = Db::name('SystemRecharge')->where('number',$out_trade_no)->find();
|
|
$order = Db::name('SystemRecharge')->where('number',$out_trade_no)->find();
|
|
- $buyer_pay_amount = $order['need_pay'];//实际支付金额
|
|
|
|
|
|
+ $buyer_pay_amount = $pay_money;//实际支付金额
|
|
if($order['status'] == 0) {
|
|
if($order['status'] == 0) {
|
|
if ($order['need_pay'] == $buyer_pay_amount) {
|
|
if ($order['need_pay'] == $buyer_pay_amount) {
|
|
Db::startTrans();
|
|
Db::startTrans();
|