| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- <?php
- namespace app\controller\merchant\store\product;
- use app\common\repositories\store\GuaranteeTemplateRepository;
- use app\common\repositories\store\order\StoreCartRepository;
- use ln\jobs\ChangeSpuStatusJob;
- use ln\services\UploadService;
- use think\App;
- use ln\basic\BaseController;
- use app\validate\merchant\StoreProductValidate as validate;
- use app\common\repositories\store\product\ProductRepository as repository;
- use think\exception\ValidateException;
- class Product extends BaseController
- {
- protected $repository ;
- /**
- * Product constructor.
- * @param App $app
- * @param repository $repository
- */
- public function __construct(App $app ,repository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/18
- * @return mixed
- */
- public function lst()
- {
- [$page, $limit] = $this->getPage();
- $where = $this->request->params(['cate_id','keyword',['type',1],'mer_cate_id','is_gift_bag','status','us_status','product_id']);
- $where = array_merge($where,$this->repository->switchType($where['type'],$this->request->merId(),0));
- return app('json')->success($this->repository->getList($this->request->merId(),$where, $page, $limit));
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/18
- * @param $id
- * @return mixed
- */
- public function detail($id)
- {
- if(!$this->repository->merExists($this->request->merId(),$id))
- return app('json')->fail('数据不存在');
- return app('json')->success($this->repository->getAdminOneProduct($id,null));
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/18
- * @param validate $validate
- * @return mixed
- */
- public function create(validate $validate)
- {
- $merchant = $this->request->merchant();
- $data = $this->checkParams($validate);
- $data['mer_id'] = $this->request->merId();
- if ($data['is_gift_bag'] && !$this->repository->checkMerchantBagNumber($data['mer_id'])) return app('json')->fail('礼包数量超过数量限制');
- $this->repository->check($data,$this->request->merId());
- $data['status'] = $this->request->merchant()->is_audit ? 0 : 1;
- $data['mer_status'] = ($merchant['is_del'] || !$merchant['mer_state'] || !$merchant['status']) ? 0 : 1;
- $data['rate'] = 3;
- $this->repository->create($data,0);
- return app('json')->success('添加成功');
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/18
- * @param $id
- * @param validate $validate
- * @return mixed
- */
- public function update($id,validate $validate)
- {
- $merchant = $this->request->merchant();
- $data = $this->checkParams($validate);
- if (!$this->repository->merExists($this->request->merId(), $id))
- return app('json')->fail('数据不存在');
- $this->repository->check($data, $this->request->merId());
- $pro = $this->repository->getWhere(['product_id' => $id]);
- if ($pro->status == -2) {
- $data['status'] = 0;
- } else {
- $data['status'] = $this->request->merchant()->is_audit ? 0 : 1;
- }
- $data['mer_status'] = ($merchant['is_del'] || !$merchant['mer_state'] || !$merchant['status']) ? 0 : 1;
- $data['mer_id'] = $this->request->merId();
- $this->repository->edit($id, $data, $this->request->merId(), 0);
- return app('json')->success('编辑成功');
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/18
- * @param $id
- * @return mixed
- */
- public function delete($id)
- {
- if(!$this->repository->merExists($this->request->merId(),$id))
- return app('json')->fail('数据不存在');
- if($this->repository->getWhereCount(['product_id' => $id,'is_show' => 1,'status' => 1]))
- return app('json')->fail('商品上架中');
- $this->repository->delete($id);
- //queue(ChangeSpuStatusJob::class,['product_type' => 0,'id' => $id]);
- return app('json')->success('转入回收站');
- }
- public function destory($id)
- {
- if(!$this->repository->merDeleteExists($this->request->merId(),$id))
- return app('json')->fail('只能删除回收站的商品');
- if(app()->make(StoreCartRepository::class)->getProductById($id))
- return app('json')->fail('商品有被加入购物车不可删除');
- $this->repository->destory($id);
- return app('json')->success('删除成功');
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/18
- * @param int $id
- * @return mixed
- */
- public function switchStatus($id)
- {
- $status = $this->request->param('status', 0) == 1 ? 1 : 0;
- if(!$this->repository->merExists($this->request->merId(),$id))
- return app('json')->fail('数据不存在');
- $this->repository->switchStatus([$id], ['is_show' => $status]);
- return app('json')->success('修改成功');
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/18
- * @return mixed
- */
- public function getStatusFilter()
- {
- return app('json')->success($this->repository->getFilter($this->request->merId(),'商品',0));
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/8
- * @Time: 14:39
- * @param validate $validate
- * @return array
- */
- public function checkParams(validate $validate)
- {
- $params = [
- "image", "slider_image", "store_name", "store_info", "keyword", "bar_code", "brand_id","guarantee_template_id",
- "cate_id", "mer_cate_id", "unit_name", "sort" , "is_show", "is_good",'is_gift_bag','once_count','integral_rate',
- "video_link", "temp_id", "content", "spec_type","extension_type", "attr", "attrValue",['give_coupon_ids',[]]
- ];
- $data = $this->request->params($params);
- $validate->check($data);
- return $data;
- }
- /**
- * TODO
- * @return mixed
- * @author Qinii
- * @day 2020-06-24
- */
- public function config()
- {
- $data['extension_status'] = systemConfig('extension_status');
- $data['integral_status'] = 0;
- $data['integral_rate'] = 0;
- if(systemConfig('integral_status') && merchantConfig($this->request->merId(),'mer_integral_status')) {
- $data['integral_status'] = 1;
- $data['integral_rate'] = merchantConfig($this->request->merId(),'mer_integral_rate');
- }
- return app('json')->success($data);
- }
- /**
- * TODO
- * @param $id
- * @return mixed
- * @author Qinii
- * @day 2020-07-03
- */
- public function restore($id)
- {
- if(!$this->repository->merDeleteExists($this->request->merId(),$id))
- return app('json')->fail('只能删除回收站的商品');
- $this->repository->restore($id);
- return app('json')->success('商品已恢复');
- }
- /**
- * @return \think\response\Json
- * @throws \think\Exception
- * @author zfy
- * @day 2020/11/16
- */
- public function temp_key()
- {
- $upload = UploadService::create();
- $re = $upload->getTempKeys();
- return app('json')->success($re);
- }
- public function updateSort($id)
- {
- $sort = $this->request->param('sort');
- $this->repository->updateSort($id,$this->request->merId(),['sort' => $sort]);
- return app('json')->success('修改成功');
- }
- public function preview()
- {
- $data = $this->request->param();
- $data['merchant'] = [
- 'mer_name' => $this->request->merchant()->mer_name,
- 'is_trader' => $this->request->merchant()->is_trader,
- 'mer_avatar' => $this->request->merchant()->mer_avatar,
- 'product_score' => $this->request->merchant()->product_score,
- 'service_score' => $this->request->merchant()->service_score,
- 'postage_score' => $this->request->merchant()->postage_score,
- 'service_phone' => $this->request->merchant()->service_phone,
- 'care_count' => $this->request->merchant()->care_count,
- 'type_name' => $this->request->merchant()->type_name->type_name ?? '',
- 'care' => true,
- 'recommend' => $this->request->merchant()->recommend,
- ];
- $data['mer_id'] = $this->request->merId();
- $data['status'] = 1;
- $data['mer_status'] = 1;
- $data['rate'] = 3;
- return app('json')->success($this->repository->preview($data));
- }
- }
|