From d1b2a3abd2b31bad047e321198f689ac8d88574c Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 26 Jan 2024 14:52:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/repositories/store/product/ProductRepository.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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']]); }