feat: 添加订单状态保存功能
This commit is contained in:
parent
c2a617aca8
commit
1fbc0b6cee
@ -76,6 +76,7 @@ class PayNotifyLogic extends BaseLogic
|
||||
}
|
||||
// $order->money = $order['pay_price'];
|
||||
$order->paid = 1;
|
||||
$order->status = 1;
|
||||
$order->pay_time = time();
|
||||
if (!$order->save()) {
|
||||
throw new BusinessException('订单保存出错');
|
||||
@ -185,6 +186,7 @@ class PayNotifyLogic extends BaseLogic
|
||||
}
|
||||
$order->money = $order['pay_price'];
|
||||
$order->paid = 1;
|
||||
$order->status = 1;
|
||||
$order->pay_time = time();
|
||||
if (!$order->save()) {
|
||||
throw new \Exception('订单保存出错');
|
||||
|
Loading…
x
Reference in New Issue
Block a user