修改春耕补贴发放

This commit is contained in:
luofei 2024-03-07 12:25:41 +08:00
parent 614c2bd4bf
commit b3fdae172b

View File

@ -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);
}
}