修改取字段值

This commit is contained in:
liu 2024-06-29 15:53:04 +08:00
parent 355b18900e
commit e813680170

View File

@ -754,11 +754,12 @@ class PayNotifyLogic extends BaseLogic
$cashFlowLogic = new CashFlowLogic(); $cashFlowLogic = new CashFlowLogic();
$cashFlowLogic->insert($order['store_id'], $order['pay_price']); $cashFlowLogic->insert($order['store_id'], $order['pay_price']);
self::dealProductLog($order); self::dealProductLog($order);
if ($order['shipping_type'] == 3) { if ($order['shipping_type'] == 3) {
self::descStock($order['id']); self::descStock($order['id']);
//直接加到礼品券中 //直接加到礼品券中
$user_sing = new UserSign(); $user_sing = new UserSign();
$total_vip = bcmul($order['price'], 0.1, 2); $total_vip = bcmul($order['pay_price'], 0.1, 2);
$sing[] = [ $sing[] = [
'uid' => $order['uid'], 'uid' => $order['uid'],
'order_id' => $order['order_id'], 'order_id' => $order['order_id'],