处理商品重复的问题

This commit is contained in:
luofei 2023-06-09 18:04:39 +08:00
parent fa2b0e5549
commit 85a848dcdd
2 changed files with 5 additions and 2 deletions

View File

@ -10,6 +10,7 @@
// +----------------------------------------------------------------------
namespace app\controller\api\server;
use app\common\model\system\merchant\Merchant;
use app\common\repositories\store\order\StoreCartRepository;
use app\common\repositories\store\product\ProductLabelRepository;
use app\common\repositories\store\product\ProductRepository;
@ -119,7 +120,8 @@ class StoreProduct extends BaseController
}
$data['mer_status'] = ($merchant['is_del'] || !$merchant['mer_state'] || !$merchant['status']) ? 0 : 1;
$data['mer_id'] = $merId;
$this->repository->edit($id, $data, $merId, 0, 1);
$productType = $merchant->type_id == Merchant::TypeSupplyChain ? 98 : 0;
$this->repository->edit($id, $data, $merId, $productType, 1);
return app('json')->success('编辑成功');
}

View File

@ -12,6 +12,7 @@
namespace app\controller\merchant\store\product;
use app\common\model\system\merchant\Merchant;
use app\common\repositories\store\order\StoreCartRepository;
use app\common\repositories\store\product\ProductAttrValueRepository;
use app\common\repositories\store\product\SpuRepository;
@ -117,7 +118,7 @@ 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');
$productType = $this->request->merchant()->type_id == 12 ? 98 : 0;
$productType = $this->request->merchant()->type_id == Merchant::TypeSupplyChain ? 98 : 0;
$this->repository->edit($id, $data, $this->request->merId(), $productType);
return app('json')->success('编辑成功');
}