mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 22:50:44 +00:00
59 lines
2.0 KiB
PHP
59 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Listeners;
|
|
|
|
use App\Events\StockUpdateEvent;
|
|
use App\Jobs\BusinessGoodsSkuIncrQuantity;
|
|
use App\Models\BusinessGoodsSku;
|
|
use App\Models\Shop;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
class StockUpdateListener
|
|
{
|
|
/**
|
|
* Create the event listener.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the event.
|
|
*
|
|
* @param StockUpdateEvent $event
|
|
* @return void
|
|
*/
|
|
public function handle(StockUpdateEvent $event)
|
|
{
|
|
$shops = Shop::query()->whereNotIn('status', [0, 3])->get(['id', 'plat_id']);
|
|
if (empty($shops)) {
|
|
return;
|
|
}
|
|
foreach ($shops as $shop) {
|
|
if (isset($event->goodsSku) && '下架' !== $event->goodsSku->status) {
|
|
$num = $event->goodsSku->stock;
|
|
$businessGoodsSkus = BusinessGoodsSku::query()->where('shop_id', $shop->id)->where('external_sku_id', $event->goodsSku->goods['goods_code'] . '_' . $event->goodsSku->sku_code)->get();
|
|
foreach ($businessGoodsSkus as $businessGoodsSku) {
|
|
BusinessGoodsSkuIncrQuantity::dispatch($shop, $businessGoodsSku->toArray(), $num, false);
|
|
}
|
|
}
|
|
if (isset($event->goodsSkus)) {
|
|
foreach ($event->goodsSkus as $goodsSku) {
|
|
if ('下架' === $goodsSku->status) {
|
|
continue;
|
|
}
|
|
$num = $goodsSku->stock;
|
|
$businessGoodsSkus = BusinessGoodsSku::query()->where('shop_id', $shop->id)->where('external_sku_id', $goodsSku->goods['goods_code'] . '_' . $goodsSku->sku_code)->get();
|
|
foreach ($businessGoodsSkus as $businessGoodsSku) {
|
|
BusinessGoodsSkuIncrQuantity::dispatch($shop, $businessGoodsSku->toArray(), $num, false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|