diff --git a/crmeb/listens/OrderDeliveryListen.php b/crmeb/listens/OrderDeliveryListen.php index 31540949..db0857fb 100644 --- a/crmeb/listens/OrderDeliveryListen.php +++ b/crmeb/listens/OrderDeliveryListen.php @@ -15,22 +15,26 @@ class OrderDeliveryListen implements ListenerInterface public function handle($event): void { $order = $event['order']; + $consumptionTotal = 0; foreach ($order->orderProduct as $orderProduct) { if (!$orderProduct->product->isPlatformCard()) { continue; } + $consumptionTotal = bcadd($consumptionTotal, $orderProduct->total_price, 2); + } + if ($consumptionTotal > 0) { $consumption = StoreConsumption::where('type', StoreConsumption::TYPE_PULL_CONSUMPTION)->find(); /** @var StoreConsumptionUserDao $repo */ $repo = app()->make(StoreConsumptionUserDao::class); $repo->startTime = date('Y-m-d H:i:s'); $repo->endTime = '2025-07-01'; - $repo->send($consumption, 1, $order['uid'], $order['group_order_id'], $order->total_price, StoreConsumptionUser::STATUS_UNUSED); + $repo->send($consumption, 1, $order['uid'], $order['group_order_id'], $consumptionTotal, StoreConsumptionUser::STATUS_UNUSED); $consumption = StoreConsumption::where('type', StoreConsumption::TYPE_RECHARGE)->find(); $repo->startTime = date('Y-m-d H:i:s'); $repo->endTime = '2025-07-01'; - $rate = $this->getRate($order->total_price); - $repo->send($consumption, $rate, $order['uid'], $order['group_order_id'], $order->total_price, StoreConsumptionUser::STATUS_REPEAL, StoreConsumptionUser::TYPE_TWO); + $rate = $this->getRate($consumptionTotal); + $repo->send($consumption, $rate, $order['uid'], $order['group_order_id'], $consumptionTotal, StoreConsumptionUser::STATUS_REPEAL, StoreConsumptionUser::TYPE_TWO); } }