From e65c0e91735c69aeb0bbd46804c4da7c9337753c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=8A=80=E6=9C=AF=E8=80=81=E8=83=A1?= <1094551889@qq.com> Date: Sat, 28 Dec 2024 16:05:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=87=91=E9=A2=9D=E6=A0=B8?= =?UTF-8?q?=E5=AF=B9=E5=80=BC=E5=AF=B9=E8=B1=A1=EF=BC=8C=E9=98=B2=E6=AD=A2?= =?UTF-8?q?=E6=BC=8F=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/PayController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controller/PayController.php b/app/controller/PayController.php index a91f0d0..c0dc9f8 100644 --- a/app/controller/PayController.php +++ b/app/controller/PayController.php @@ -161,7 +161,7 @@ class PayController // 支付渠道核对 $is_channel = $cids[$order->cid] == $new_order['channel']; // 金额核对 - $is_money = $order->money == $new_order['price']; + $is_money = $order->really_price == $new_order['price']; // 订单核对 if ($is_payway && $is_channel && $is_money) { $res = $this->updateOrderState($order, $new_order['order_no']);