mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 22:50:44 +00:00
commit
24752d4365
@ -34,7 +34,7 @@ class StockUpdateListener
|
||||
return;
|
||||
}
|
||||
foreach ($shops as $shop) {
|
||||
if (isset($event->goodsSku)) {
|
||||
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) {
|
||||
@ -43,6 +43,9 @@ class StockUpdateListener
|
||||
}
|
||||
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) {
|
||||
|
||||
@ -45,6 +45,9 @@ class UpdateBusinessGoodsStock implements ShouldQueue
|
||||
|
||||
return;
|
||||
}
|
||||
if ('下架' === $event->goodsSku->status) {
|
||||
return;
|
||||
}
|
||||
$shops = Shop::query()->where('id', '<>', $event->businessOrderItem['shop_id'])->whereNotIn('status', [0, 3])->get(['id', 'plat_id']);
|
||||
if (empty($shops)) {
|
||||
return;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user