更新商品编辑

This commit is contained in:
mkm 2024-01-28 14:03:06 +08:00
parent 7adac8fb8b
commit d6a56e119f
2 changed files with 8 additions and 4 deletions

View File

@ -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();
}
}

View File

@ -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);
}
}
/**