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