修改春耕补贴激活

This commit is contained in:
luofei 2024-03-07 16:26:13 +08:00
parent d865bf4fdb
commit 0771bef93a

View File

@ -20,23 +20,28 @@ class ActivateConsumptionListen extends TimerService implements ListenerInterfac
{
$this->tick(1000 * 60, function () {
Log::info('定时任务:激活商户补贴');
$count = 0;
$couponId = StoreConsumption::where('type', StoreConsumption::TYPE_RECHARGE)->value('coupon_id');
if (empty($couponId)) {
return;
}
$buyCouponId = StoreConsumption::where('type', StoreConsumption::TYPE_PULL_CONSUMPTION)->value('coupon_id');
$storeConsumptionUser = StoreConsumptionUser::where('coupon_id', $couponId)
->where('status', StoreConsumptionUser::STATUS_REPEAL)
->select();
foreach ($storeConsumptionUser as $item) {
$saleTotal = Merchant::where('uid', $item['uid'])->value('sale_amount');
if ($saleTotal >= $item['order_amount'] && $item['balance'] <= 0) {
$balance = StoreConsumptionUser::where('coupon_id', $buyCouponId)->where('uid', $item['uid'])->value('balance');
if ($saleTotal >= $item['order_amount'] && $balance <= 0) {
$item->status = StoreConsumptionUser::STATUS_UNUSED;
$item->start_time = date('Y-m-d H:i:s');
$item->end_time = date('Y-m-d H:i:s', strtotime('+1 year'));
$item->save();
UserBill::where('link_id', $item['coupon_user_id'])->where('type', 'red_pack_2')->update(['status', 1]);
$count++;
}
}
Log::info('定时任务:激活商户补贴,执行数量:' . $count);
});
}