You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.4 KiB
113 lines
3.4 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
namespace app\adminapi\controller\v1\setting;
|
|
|
|
use app\adminapi\controller\AuthController;
|
|
use app\services\shipping\ShippingTemplatesServices;
|
|
use app\services\shipping\SystemCityServices;
|
|
use think\facade\App;
|
|
|
|
/**
|
|
* 运费模板
|
|
* Class ShippingTemplates
|
|
* @package app\adminapi\controller\v1\setting
|
|
*/
|
|
class ShippingTemplates extends AuthController
|
|
{
|
|
/**
|
|
* 构造方法
|
|
* ShippingTemplates constructor.
|
|
* @param App $app
|
|
* @param ShippingTemplatesServices $services
|
|
*/
|
|
public function __construct(App $app, ShippingTemplatesServices $services)
|
|
{
|
|
parent::__construct($app);
|
|
$this->services = $services;
|
|
}
|
|
|
|
/**
|
|
* 运费模板列表
|
|
* @return mixed
|
|
*/
|
|
public function temp_list()
|
|
{
|
|
$where = $this->request->getMore([
|
|
[['name', 's'], '']
|
|
]);
|
|
return app('json')->success($this->services->getShippingList($where));
|
|
}
|
|
|
|
/**
|
|
* 修改
|
|
* @return string
|
|
* @throws \Exception
|
|
*/
|
|
public function edit($id)
|
|
{
|
|
return app('json')->success($this->services->getShipping((int)$id));
|
|
}
|
|
|
|
/**
|
|
* 保存或者修改
|
|
* @param int $id
|
|
*/
|
|
public function save($id = 0)
|
|
{
|
|
$data = $this->request->postMore([
|
|
[['region_info', 'a'], []],
|
|
[['appoint_info', 'a'], []],
|
|
[['no_delivery_info', 'a'], []],
|
|
[['sort', 'd'], 0],
|
|
[['type', 'd'], 0],
|
|
[['name', 's'], ''],
|
|
[['appoint', 'd'], 0],
|
|
[['no_delivery', 'd'], 0]
|
|
]);
|
|
$this->validate($data, \app\adminapi\validate\setting\ShippingTemplatesValidate::class, 'save');
|
|
$temp['name'] = $data['name'];
|
|
$temp['type'] = $data['type'];
|
|
$temp['appoint'] = $data['appoint'] && $data['appoint_info'] ? 1 : 0;
|
|
$temp['no_delivery'] = $data['no_delivery'] && $data['no_delivery_info'] ? 1 : 0;
|
|
$temp['sort'] = $data['sort'];
|
|
$temp['add_time'] = time();
|
|
$this->services->save((int)$id, $temp, $data);
|
|
return app('json')->success(100000);
|
|
}
|
|
|
|
/**
|
|
* 删除运费模板
|
|
*/
|
|
public function delete()
|
|
{
|
|
[$id] = $this->request->getMore([
|
|
[['id', 'd'], 0],
|
|
], true);
|
|
if ($id == 1) {
|
|
return app('json')->fail(400181);
|
|
} else {
|
|
$this->services->detete($id);
|
|
return app('json')->success(100002);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 城市数据
|
|
* @return mixed
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function city_list(SystemCityServices $services)
|
|
{
|
|
return app('json')->success($services->getShippingCity());
|
|
}
|
|
}
|
|
|