From e961ee37c5f9cd77192c970c7ca5f27ba23adc1e Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Fri, 9 Jun 2023 17:14:11 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86=E5=95=86=E5=93=81=E9=87=8D?= =?UTF-8?q?=E5=A4=8D=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/merchant/store/product/Product.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/controller/merchant/store/product/Product.php b/app/controller/merchant/store/product/Product.php index f138af54..b0281489 100644 --- a/app/controller/merchant/store/product/Product.php +++ b/app/controller/merchant/store/product/Product.php @@ -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_id'] = $this->request->merId(); $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('编辑成功'); }