123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <?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\freight;
- use app\adminapi\controller\AuthController;
- use app\services\shipping\ExpressServices;
- use think\facade\App;
- /**
- * 物流
- * Class Express
- * @package app\adminapi\controller\v1\freight
- */
- class Express extends AuthController
- {
- /**
- * 构造方法
- * Express constructor.
- * @param App $app
- * @param ExpressServices $services
- */
- public function __construct(App $app, ExpressServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
- /**
- * 获取物流列表
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- $where = $this->request->getMore([
- ['keyword', ''],
- ['is_show', '']
- ]);
- return app('json')->success($this->services->getExpressList($where));
- }
- /**
- * 显示创建资源表单页
- * @return mixed
- * @throws \FormBuilder\Exception\FormBuilderException
- */
- public function create()
- {
- return app('json')->success($this->services->createForm());
- }
- /**
- * 保存新建的资源
- * @return \think\Response
- */
- public function save()
- {
- $data = $this->request->postMore([
- 'name',
- 'code',
- ['sort', 0],
- ['is_show', 0]]);
- if (!$data['name']) return app('json')->fail(400400);
- $this->services->save($data);
- return app('json')->success(400401);
- }
- /**
- * 显示编辑资源表单页
- * @param $id
- * @return mixed
- * @throws \FormBuilder\Exception\FormBuilderException
- */
- public function edit($id)
- {
- return app('json')->success($this->services->updateForm((int)$id));
- }
- /**
- * 保存更新的资源
- * @param $id
- * @return mixed
- */
- public function update($id)
- {
- $data = $this->request->postMore([
- ['account', ''],
- ['key', ''],
- ['net_name', ''],
- ['courier_name', ''],
- ['customer_name', ''],
- ['code_name', ''],
- ['sort', 0],
- ['is_show', 0]]);
- if (!$expressInfo = $this->services->get($id)) return app('json')->fail(100026);
- if ($expressInfo['net'] == 1 && !$data['net_name']) {
- return app('json')->fail(400404);
- }
- if ($expressInfo['check_man'] == 1 && !$data['courier_name']) {
- return app('json')->fail(500001);
- }
- if ($expressInfo['partner_name'] == 1 && !$data['customer_name']) {
- return app('json')->fail(500002);
- }
- if ($expressInfo['is_code'] == 1 && !$data['code_name']) {
- return app('json')->fail(500003);
- }
- $expressInfo->account = $data['account'];
- $expressInfo->key = $data['key'];
- $expressInfo->net_name = $data['net_name'];
- $expressInfo->courier_name = $data['courier_name'];
- $expressInfo->customer_name = $data['customer_name'];
- $expressInfo->code_name = $data['code_name'];
- $expressInfo->sort = $data['sort'];
- $expressInfo->is_show = $data['is_show'];
- $expressInfo->status = 1;
- $expressInfo->save();
- return app('json')->success(100001);
- }
- /**
- * 删除指定资源
- * @param $id
- * @return mixed
- */
- public function delete($id)
- {
- if (!$id) return app('json')->fail(100100);
- $res = $this->services->delete($id);
- if (!$res)
- return app('json')->fail(100008);
- else
- return app('json')->success(100002);
- }
- /**
- * 修改状态
- * @param int $id
- * @param string $status
- * @return mixed
- */
- public function set_status($id = 0, $status = '')
- {
- if ($status == '' || $id == 0) return app('json')->fail(100100);
- $this->services->update($id, ['is_show' => $status]);
- return app('json')->success(100014);
- }
- /**
- * 同步平台快递公司
- * @return mixed
- */
- public function syncExpress()
- {
- $this->services->syncExpress();
- return app('json')->success(100038);
- }
- }
|