zx/app/controller/admin/store/StoreProductGroup.php

136 lines
4.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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\ProductGroupRepository;
use app\common\repositories\store\product\ProductRepository;
use app\common\repositories\store\product\SpuRepository;
use app\validate\merchant\StoreProductAdminValidate as validate;
use crmeb\basic\BaseController;
use think\App;
/**
* 拼团商品信息
*/
class StoreProductGroup extends BaseController
{
protected $repository;
/**
* @param App $app
* @param ProductGroupRepository $repository
*/
public function __construct(App $app, ProductGroupRepository $repository)
{
parent::__construct($app);
$this->repository = $repository;
}
public function lst()
{
[$page, $limit] = $this->getPage();
$where = $this->request->params(['product_status', 'keyword', 'status', 'active_type', 'mer_id', 'is_trader', 'level', 'us_status', 'star', 'product_group_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);
}
/**
* TODO 获取商品
* @param $id
* @return mixed
* @author Qinii
* @day 2020-11-02
*/
public function get($id)
{
$data = $this->repository->get($id);
if (!$data) return app('json')->fail('数据不存在');
$res = app()->make(ProductRepository::class)->getAdminOneProduct($data['product_id'], $id);
$res['product_group_id'] = $id;
if (!$data) return app('json')->fail('数据不存在');
return app('json')->success($res);
}
/**
* 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 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, 4);
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;
}
public function switchAudit()
{
$id = $this->request->param('id');
$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 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']);
// if (empty($data['sys_labels'])) return app('json')->fail('标签为空');
app()->make(SpuRepository::class)->setLabels($id, 4, $data, 0);
return app('json')->success('修改成功');
}
}