123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\controller\admin\store;
- use app\common\repositories\store\product\ProductAssistRepository as repository;
- use app\common\repositories\store\product\SpuRepository;
- use app\validate\merchant\StoreProductAdminValidate as validate;
- use crmeb\basic\BaseController;
- use crmeb\services\SwooleTaskService;
- use think\App;
- class StoreProductAssist 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;
- }
- /**
- * TODO 列表
- * @return mixed
- * @author Qinii
- * @day 2020-10-12
- */
- public function lst()
- {
- [$page, $limit] = $this->getPage();
- $where = $this->request->params(['product_status', 'keyword', 'status', 'type', 'mer_id', 'is_trader', 'us_status', 'star', 'product_assist_id', 'sys_labels']);
- $data = $this->repository->getAdminList($where, $page, $limit);
- return app('json')->success($data);
- }
- /**
- * TODO 详情
- * @param $id
- * @return mixed
- * @author Qinii
- * @day 2020-10-12
- */
- public function detail($id)
- {
- $data = $this->repository->detail(null, $id);
- return app('json')->success($data);
- }
- public function switchStatus($id)
- {
- $status = $this->request->param('status', 0) == 1 ? 1 : 0;
- if (!$ret = $this->repository->get($id))
- return app('json')->fail('数据不存在');
- $this->repository->update($id, ['status' => $status]);
- app()->make(SpuRepository::class)->changeStatus($id,3);
- return app('json')->success('修改成功');
- }
- /**
- * TODO 获取商品
- * @param $id
- * @return mixed
- * @author Qinii
- * @day 2020-11-02
- */
- public function get($id)
- {
- if (!$this->repository->getWhereCount([$this->repository->getPk() => $id]))
- return app('json')->fail('数据不存在');
- $data = $this->repository->get($id);
- return app('json')->success($data);
- }
- /**
- * TODO 编辑商品
- * @param $id
- * @param validate $validate
- * @return mixed
- * @author Qinii
- * @day 2020-11-02
- */
- public function update($id, validate $validate)
- {
- $data = $this->checkParams($validate);
- if (!$this->repository->getWhereCount([$this->repository->getPk() => $id]))
- return app('json')->fail('数据不存在');
- $this->repository->updateProduct($id, $data);
- return app('json')->success('编辑成功');
- }
- public function checkParams(validate $validate)
- {
- $data = $this->request->params(['is_hot', 'is_best', 'is_benefit', 'is_new', 'store_name', 'keyword', 'content', 'rank', 'star']);
- $validate->check($data);
- return $data;
- }
- /**
- * TODO 审核
- * @return \think\response\Json
- * @author Qinii
- * @day 2022/11/15
- */
- public function switchAudit()
- {
- $id = $this->request->param('id');
- if (!$ret = $this->repository->get($id))
- return app('json')->fail('数据不存在');
- $data = $this->request->params(['status', 'refusal']);
- if ($data['status'] == -1 && empty($data['refusal']))
- return app('json')->fail('请填写拒绝理由');
- $this->repository->switchStatus($id,$data);
- return app('json')->success('操作成功');
- }
- public function setLabels($id)
- {
- $data = $this->request->params(['sys_labels']);
- app()->make(SpuRepository::class)->setLabels($id, 3, $data, 0);
- return app('json')->success('修改成功');
- }
- }
|