diff --git a/app/common/repositories/store/product/ProductRepository.php b/app/common/repositories/store/product/ProductRepository.php index 7a255ecc..ae51c6b4 100755 --- a/app/common/repositories/store/product/ProductRepository.php +++ b/app/common/repositories/store/product/ProductRepository.php @@ -319,14 +319,14 @@ class ProductRepository extends BaseRepository app()->make(SpuRepository::class)->baseUpdate($spuData, $id, 0, $productType); event('product.update', compact('id')); if ($data['status'] == 0) { - event('product.sell', ['product_id' => [$id]]); + event('product.sell', ['product_id' => [$id],'status'=>$data['status']]); } app()->make(SpuRepository::class)->changeStatus($id, $productType); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); - return false; + return $e->getMessage(); } } diff --git a/app/controller/merchant/store/product/Product.php b/app/controller/merchant/store/product/Product.php index db78e094..c88806c0 100755 --- a/app/controller/merchant/store/product/Product.php +++ b/app/controller/merchant/store/product/Product.php @@ -132,8 +132,12 @@ class Product extends BaseController $data['update_time'] = date('Y-m-d H:i:s'); $typeSupplyChainId = Db::name('MerchantType')->where('type_code', Merchant::TypeCode['TypeSupplyChain'])->value('mer_type_id'); $productType = $this->request->merchant()->type_id == $typeSupplyChainId ? 98 : 0; - $this->repository->edit($id, $data, $this->request->merId(), $productType, 1); - return app('json')->success('编辑成功'); + $res=$this->repository->edit($id, $data, $this->request->merId(), $productType, 1); + if($res===true){ + return app('json')->success('编辑成功'); + }else{ + return app('json')->fail('编辑失败'.$res); + } } /**