处理商品重复的问题

This commit is contained in:
luofei 2023-06-09 17:14:11 +08:00
parent aa3ccf80fb
commit e961ee37c5

View File

@ -117,7 +117,8 @@ class Product extends BaseController
$data['mer_status'] = ($this->request->merchant()->is_del || !$this->request->merchant()->mer_state || !$this->request->merchant()->status) ? 0 : 1; $data['mer_status'] = ($this->request->merchant()->is_del || !$this->request->merchant()->mer_state || !$this->request->merchant()->status) ? 0 : 1;
$data['mer_id'] = $this->request->merId(); $data['mer_id'] = $this->request->merId();
$data['update_time'] = date('Y-m-d H:i:s'); $data['update_time'] = date('Y-m-d H:i:s');
$this->repository->edit($id, $data, $this->request->merId(), 0); $productType = $this->request->merchant()->type_id == 12 ? 98 : 0;
$this->repository->edit($id, $data, $this->request->merId(), $productType);
return app('json')->success('编辑成功'); return app('json')->success('编辑成功');
} }