// +---------------------------------------------------------------------- namespace app\controller\admin\store; use app\common\repositories\store\product\SpuRepository; use app\common\repositories\system\merchant\MerchantRepository; use think\App; use crmeb\basic\BaseController; use app\validate\merchant\StoreProductAdminValidate as validate; use app\common\repositories\store\product\ProductRepository as repository; use think\facade\Queue; class StoreProduct extends BaseController { /** * @var repository */ protected $repository; /** * StoreProduct 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', 'pid','store_name','is_trader','us_status','product_id','star','sys_labels','hot_type']); $mer_id = $this->request->param('mer_id',''); $merId = $mer_id ? $mer_id : null; $where['is_gift_bag'] = 0; $_where = $this->repository->switchType($where['type'], null,0); unset($_where['star']); $where = array_merge($where, $_where); return app('json')->success($this->repository->getAdminList($merId, $where, $page, $limit)); } /** * @Author:Qinii * @Date: 2020/5/18 * @return mixed */ public function bagList() { [$page, $limit] = $this->getPage(); $where = $this->request->params(['cate_id','keyword',['type',1],'mer_cate_id' ,'is_trader','us_status']); $merId = $this->request->param('mer_id') ? $this->request->param('mer_id') : null; $_where = $this->repository->switchType($where['type'], null,10); $where = array_merge($where,$_where); $where['order'] = 'rank'; unset($where['star']); return app('json')->success($this->repository->getAdminList($merId,$where, $page, $limit)); } /** * @Author:Qinii * @Date: 2020/5/18 * @return mixed */ public function getStatusFilter() { return app('json')->success($this->repository->getFilter(null,'商品',0)); } /** * TODO 礼包表头 * @Author:Qinii * @Date: 2020/5/18 * @return mixed */ public function getBagStatusFilter() { return app('json')->success($this->repository->getFilter(null,'礼包',10)); } /** * @Author:Qinii * @Date: 2020/5/18 * @param $id * @return mixed */ public function detail($id) { if(!$this->repository->merExists(null,$id)) return app('json')->fail('数据不存在'); return app('json')->success($this->repository->getAdminOneProduct($id,0)); } /** * @Author:Qinii * @Date: 2020/5/11 * @param $id * @param validate $validate * @return mixed */ public function update($id,validate $validate) { $data = $this->checkParams($validate); $this->repository->adminUpdate($id,$data); return app('json')->success('编辑成功'); } /** * TODO 审核 / 下架 * @Author:Qinii * @Date: 2020/5/18 * @param int $id * @return mixed */ public function switchStatus() { //0:审核中,1:审核通过 -1: 未通过 -2: 下架 $id = $this->request->param('id'); $data = $this->request->params(['status','refusal']); if (in_array($data['status'],[1,0,-2,-1])) if($data['status'] == -1 && empty($data['refusal'])) return app('json')->fail('请填写拒绝理由'); if(is_array($id)) { $this->repository->batchSwitchStatus($id,$data); } else { $this->repository->switchStatus($id,$data); } return app('json')->success('操作成功'); } /** * @Author:Qinii * @Date: 2020/5/11 * @param validate $validate * @return array */ public function checkParams(validate $validate) { $data = $this->request->params(['is_hot','is_best','is_benefit','is_new','store_name','content','rank','star']); $validate->check($data); return $data; } /** * TODO * @author Qinii * @day 2020-06-24 */ public function checkProduct() { Queue::push(CheckProductExtensionJob::class,[]); return app('json')->success('后台已开始检测'); } public function lists() { $make = app()->make(MerchantRepository::class); $data = $make->selectWhere(['is_del' => 0],'mer_id,mer_name'); return app('json')->success($data); } /** * 增加虚拟销量表单 * @Author:Qinii * @Date: 2020/10/9 * @param $id * @return mixed */ public function addFictiForm($id) { if(!$this->repository->merExists(null,$id)) return app('json')->fail('数据不存在'); return app('json')->success(formToData($this->repository->fictiForm($id))); } /** * 修改虚拟销量 * @Author:Qinii * @Date: 2020/10/9 * @param $id * @return mixed * */ public function addFicti($id) { $data = $this->request->params(['type','ficti']); if(!in_array($data['type'],[1,2])) return app('json')->fail('类型错误'); if(!$data['ficti'] || $data['ficti'] < 0) return app('json')->fail('虚拟销量必须大于0'); $res = $this->repository->getWhere(['product_id' => $id],'ficti,sales'); if(!$res) return app('json')->fail('数据不存在'); if($data['type'] == 2 && $res['ficti'] < $data['ficti']) return app('json')->fail('虚拟销量不足'); $ficti = ($data['type'] == 1) ? $data['ficti'] : '-' . $data['ficti']; $data = [ 'ficti' => $res['ficti'] + $ficti, 'sales' => $res['sales'] + $ficti ]; $this->repository->update($id,$data); return app('json')->success('修改成功'); } /** * TODO * @param $id * @return \think\response\Json * @author Qinii * @day 3/17/21 */ public function updateSort($id) { $sort = $this->request->param('sort'); $this->repository->updateSort($id,null,['rank' => $sort]); return app('json')->success('修改成功'); } public function setLabels($id) { $data = $this->request->params(['sys_labels']); app()->make(SpuRepository::class)->setLabels($id,0,$data,0); return app('json')->success('修改成功'); } /** * TODO 是否隐藏 * @param $id * @return mixed * @author Qinii * @day 2020-07-17 */ public function changeUsed($id) { if(!$this->repository->merExists(null,$id)) return app('json')->fail('数据不存在'); $status = $this->request->param('status',0) == 1 ? 1 : 0; $this->repository->switchShow($id,$status,'is_used',0); return app('json')->success('修改成功'); } /** * TODO 批量显示隐藏 * @return \think\response\Json * @author Qinii * @day 2022/11/14 */ public function batchShow() { $ids = $this->request->param('ids'); $status = $this->request->param('status') == 1 ? 1 : 0; $this->repository->batchSwitchShow($ids,$status,'is_used',0); return app('json')->success('修改成功'); } /** * TODO 批量标签 * @return \think\response\Json * @author Qinii * @day 2022/9/6 */ public function batchLabels() { $ids = $this->request->param('ids'); $data = $this->request->params(['sys_labels']); if (empty($ids)) return app('json')->fail('请选择商品'); app()->make(SpuRepository::class)->batchLabels($ids, $data,0); return app('json')->success('修改成功'); } /** * TODO 批量设置推荐类型 * @return \think\response\Json * @author Qinii * @day 2022/9/6 */ public function batchHot() { $ids = $this->request->param('ids'); $data = $this->request->params([['is_hot',0],['is_benefit',0],['is_best',0],['is_new',0]]); if (empty($ids)) return app('json')->fail('请选择商品'); $this->repository->updates($ids,$data); return app('json')->success('修改成功'); } }