mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 06:30:49 +00:00
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\GoodsSku;
|
|
use Illuminate\Broadcasting\Channel;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Broadcasting\PresenceChannel;
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class BatchStockUpdateEvent
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public $goodsSkus;
|
|
public $combinationGoodsUpdate;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param $goodsSkuIds
|
|
* @param bool $combinationGoodsUpdate
|
|
*/
|
|
public function __construct($goodsSkuIds, bool $combinationGoodsUpdate = true)
|
|
{
|
|
$this->goodsSkus = GoodsSku::query()->whereIn('id', $goodsSkuIds)->get();
|
|
$this->combinationGoodsUpdate = $combinationGoodsUpdate;
|
|
}
|
|
|
|
/**
|
|
* Get the channels the event should broadcast on.
|
|
*
|
|
* @return \Illuminate\Broadcasting\Channel|array
|
|
*/
|
|
public function broadcastOn()
|
|
{
|
|
return new PrivateChannel('channel-name');
|
|
}
|
|
}
|