Merge pull request '修复状态' (#140) from dev into master

Reviewed-on: #140
This commit is contained in:
mkm 2024-01-26 14:59:49 +08:00
commit 42b442bc51

View File

@ -1746,6 +1746,7 @@ class ProductRepository extends BaseRepository
*/ */
public function switchStatus($id, $data) public function switchStatus($id, $data)
{ {
halt($data);
$product = $this->getSearch([])->find($id); $product = $this->getSearch([])->find($id);
if(!$product) throw new ValidateException('商品不存在'); if(!$product) throw new ValidateException('商品不存在');
$this->dao->update($id, $data); $this->dao->update($id, $data);
@ -1795,7 +1796,7 @@ class ProductRepository extends BaseRepository
$this->dao->updates($id, $data); $this->dao->updates($id, $data);
Queue(ChangeSpuStatusJob::class, ['id' => $id, 'product_type' => $product_type]); Queue(ChangeSpuStatusJob::class, ['id' => $id, 'product_type' => $product_type]);
event('product.status', compact('id', 'data')); event('product.status', compact('id', 'data'));
event('product.sell', ['product_id' => $id]); event('product.sell', ['product_id' => $id,'status'=>$data['status']]);
} }