Merge pull request 'fix(order): 修复支付宝即时到账和扫码支付的订单金额显示问题' (#435) from dev into main

Reviewed-on: https://gitea.lihaink.cn/mkm/multi-store/pulls/435
This commit is contained in:
mkm 2025-01-05 10:18:21 +08:00
commit 2e6372ea64

View File

@ -562,7 +562,7 @@ class PayNotifyLogic extends BaseLogic
return true; return true;
} }
if ($order->pay_type != 10) { if ($order->pay_type != 10) {
$order->money = $extra['buyer_pay_amount']; $order->pay_price = $extra['buyer_pay_amount'];
$order->paid = 1; $order->paid = 1;
$order->pay_time = time(); $order->pay_time = time();
$order->status = 1; $order->status = 1;