156 lines
4.8 KiB
PHP
156 lines
4.8 KiB
PHP
|
<?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\parameter;
|
|||
|
|
|||
|
use app\common\repositories\store\parameter\ParameterTemplateRepository;
|
|||
|
use app\validate\admin\ParameterTemplateValidate;
|
|||
|
use think\App;
|
|||
|
use crmeb\basic\BaseController;
|
|||
|
use think\exception\ValidateException;
|
|||
|
|
|||
|
/**
|
|||
|
* 商品参数模板
|
|||
|
*/
|
|||
|
class ParameterTemplate extends BaseController
|
|||
|
{
|
|||
|
protected $repository;
|
|||
|
|
|||
|
/**
|
|||
|
* City constructor.
|
|||
|
* @param App $app
|
|||
|
* @param ParameterTemplateRepository $repository
|
|||
|
*/
|
|||
|
public function __construct(App $app, ParameterTemplateRepository $repository)
|
|||
|
{
|
|||
|
parent::__construct($app);
|
|||
|
$this->repository = $repository;
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* @Author:Qinii
|
|||
|
* @Date: 2020/5/8
|
|||
|
* @Time: 14:40
|
|||
|
* @return mixed
|
|||
|
*/
|
|||
|
public function lst()
|
|||
|
{
|
|||
|
[$page, $limit] = $this->getPage();
|
|||
|
$where = $this->request->params(['template_name', 'cate_ids', 'mer_name', 'mer_id']);
|
|||
|
$where['is_mer'] = $this->request->param('is_mer', 1);
|
|||
|
if ($merId = $this->request->merId()) {
|
|||
|
$where['mer_id'] = $merId;
|
|||
|
unset($where['is_mer']);
|
|||
|
}
|
|||
|
// 处理分类id
|
|||
|
if (!empty($where['cate_ids'])) {
|
|||
|
$where['cate_id'] = end($where['cate_ids']);
|
|||
|
unset($where['cate_ids']);
|
|||
|
}
|
|||
|
$data = $this->repository->getList($where, $page, $limit);
|
|||
|
return app('json')->success($data);
|
|||
|
}
|
|||
|
|
|||
|
public function detail($id)
|
|||
|
{
|
|||
|
$data = $this->repository->detail($id, $this->request->merId());
|
|||
|
return app('json')->success($data);
|
|||
|
}
|
|||
|
|
|||
|
public function create()
|
|||
|
{
|
|||
|
$data = $this->checkParams(1);
|
|||
|
$this->repository->create($this->request->merId(), $data);
|
|||
|
return app('json')->success('添加成功');
|
|||
|
}
|
|||
|
|
|||
|
public function update($id)
|
|||
|
{
|
|||
|
$data = $this->checkParams();
|
|||
|
$where['template_id'] = $id;
|
|||
|
if ($merId = $this->request->merId()) {
|
|||
|
$where['mer_id'] = $merId;
|
|||
|
}
|
|||
|
if (!$res = $this->repository->getWhere($where)) {
|
|||
|
return app('json')->fail('数据不存在');
|
|||
|
}
|
|||
|
$this->repository->update($id, $data, $merId);
|
|||
|
return app('json')->success('编辑成功');
|
|||
|
}
|
|||
|
|
|||
|
public function delete($id)
|
|||
|
{
|
|||
|
$where['template_id'] = $id;
|
|||
|
if ($merId = $this->request->merId()) {
|
|||
|
$where['mer_id'] = $merId;
|
|||
|
}
|
|||
|
if (!$this->repository->getWhere($where)) {
|
|||
|
return app('json')->fail('数据不存在');
|
|||
|
}
|
|||
|
$this->repository->delete($id);
|
|||
|
return app('json')->success('操作成功');
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* TODO 根据cate_id获取参数模板列表
|
|||
|
* @return \think\response\Json
|
|||
|
* @author Qinii
|
|||
|
* @day 2022/11/22
|
|||
|
*/
|
|||
|
public function select()
|
|||
|
{
|
|||
|
$where = $this->request->params(['cate_id', 0]);
|
|||
|
$where['mer_id'] = 0;
|
|||
|
$data['sys'] = $this->repository->getSelect($where);
|
|||
|
|
|||
|
$where = ['mer_id' => $this->request->merId()];
|
|||
|
$data['mer'] = $this->repository->getSelect($where);
|
|||
|
|
|||
|
return app('json')->success($data);
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* TODO 根据模板id 获取参数
|
|||
|
* @param $id
|
|||
|
* @return \think\response\Json
|
|||
|
* @author Qinii
|
|||
|
* @day 2022/11/22
|
|||
|
*/
|
|||
|
public function show()
|
|||
|
{
|
|||
|
$template_ids = $this->request->param('template_ids');
|
|||
|
if (!$template_ids) return app('json')->success([]);
|
|||
|
$where['template_ids'] = $template_ids;
|
|||
|
$data = $this->repository->show($where);
|
|||
|
return app('json')->success($data);
|
|||
|
}
|
|||
|
|
|||
|
public function checkParams($isCreate = 0)
|
|||
|
{
|
|||
|
$mer_id = $this->request->merId();
|
|||
|
$data = $this->request->params(['template_name', ['cate_ids', []], 'sort', 'params']);
|
|||
|
app()->make(ParameterTemplateValidate::class)->check($data);
|
|||
|
if ($mer_id == 0 && empty($data['cate_ids'])) {
|
|||
|
throw new ValidateException('请选择商品分类');
|
|||
|
}
|
|||
|
if ($isCreate) {
|
|||
|
foreach ($data['params'] as $item) {
|
|||
|
if (isset($item['parameter_id'])) unset($item['parameter_id']);
|
|||
|
if (isset($item['template_id'])) unset($item['template_id']);
|
|||
|
$params[] = $item;
|
|||
|
}
|
|||
|
$data['params'] = $params;
|
|||
|
}
|
|||
|
return $data;
|
|||
|
}
|
|||
|
}
|