zx/app/controller/api/server/ShippingTemplate.php

137 lines
3.9 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\api\server;
use think\App;
use crmeb\basic\BaseController;
use think\exception\HttpResponseException;
use app\validate\merchant\ShippingTemplateValidate;
use app\common\repositories\store\service\StoreServiceRepository;
use app\common\repositories\store\shipping\ShippingTemplateRepository;
class ShippingTemplate extends BaseController
{
protected $merId;
protected $repository;
public function __construct(App $app, ShippingTemplateRepository $repository)
{
parent::__construct($app);
$this->repository = $repository;
$this->merId = $this->request->route('merId');
}
/**
* TODO
* @return \think\response\Json
* @author Qinii
* @day 8/24/21
*/
public function lst()
{
[$page, $limit] = $this->getPage();
$where = $this->request->params(['type','name']);
return app('json')->success($this->repository->search($this->merId, $where, $page, $limit));
}
/**
* TODO
* @return \think\response\Json
* @author Qinii
* @day 8/24/21
*/
public function getList()
{
return app('json')->success($this->repository->getList($this->merId));
}
/**
* TODO
* @param ShippingTemplateValidate $validate
* @return \think\response\Json
* @author Qinii
* @day 8/24/21
*/
public function create(ShippingTemplateValidate $validate)
{
$data = $this->checkParams($validate);
$data['mer_id'] = $this->merId;
$this->repository->create($data);
return app('json')->success('添加成功');
}
/**
* TODO
* @param $id
* @return \think\response\Json
* @author Qinii
* @day 8/24/21
*/
public function detail($id)
{
if(!$this->repository->merExists($this->merId,$id))
return app('json')->fail('数据不存在');
return app('json')->success($this->repository->getOne($id,1));
}
/**
* TODO
* @param $id
* @param ShippingTemplateValidate $validate
* @return \think\response\Json
* @author Qinii
* @day 8/24/21
*/
public function update($id, ShippingTemplateValidate $validate)
{
$data = $this->checkParams($validate);
if(!$this->repository->merExists($this->merId,$id))
return app('json')->fail('数据不存在');
$this->repository->update($id,$data, $this->merId);
return app('json')->success('编辑成功');
}
/**
* TODO
* @param $id
* @return \think\response\Json
* @author Qinii
* @day 8/24/21
*/
public function batchDelete()
{
$ids = $this->request->param('ids');
foreach ($ids as $id) {
$this->repository->check($this->merId, $id);
}
$this->repository->delete($ids);
return app('json')->success('删除成功');
}
/**
* TODO
* @param ShippingTemplateValidate $validate
* @return array
* @author Qinii
* @day 8/24/21
*/
public function checkParams(ShippingTemplateValidate $validate)
{
$data = $this->request->params(['name','type','appoint','undelivery','region','free','undelives','sort','info']);
$validate->check($data);
return $data;
}
}