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.
101 lines
2.8 KiB
101 lines
2.8 KiB
9 months ago
|
<?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\serve;
|
||
|
|
||
|
|
||
|
use app\adminapi\controller\AuthController;
|
||
|
use app\services\serve\ServeServices;
|
||
|
use app\services\shipping\ExpressServices;
|
||
|
use think\facade\App;
|
||
|
|
||
|
/**
|
||
|
* 一号通平台物流服务
|
||
|
* Class Export
|
||
|
* @package app\adminapi\controller\v1\serve
|
||
|
*/
|
||
|
class Export extends AuthController
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Export constructor.
|
||
|
* @param App $app
|
||
|
* @param ExpressServices $services
|
||
|
*/
|
||
|
public function __construct(App $app, ExpressServices $services)
|
||
|
{
|
||
|
parent::__construct($app);
|
||
|
$this->services = $services;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 物流公司
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getExportAll()
|
||
|
{
|
||
|
return app('json')->success($this->services->expressList());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* 获取面单信息
|
||
|
* @param string $com
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getExportTemp(ServeServices $services)
|
||
|
{
|
||
|
[$com] = $this->request->getMore([
|
||
|
['com', ''],
|
||
|
], true);
|
||
|
return app('json')->success($services->express()->temp($com));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 打印电子面单是否开启
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function dumpIsOpen(ServeServices $services)
|
||
|
{
|
||
|
$userInfo = $services->user()->getUser();
|
||
|
$res = false;
|
||
|
if ($userInfo['dump']['open']) {
|
||
|
$res = true;
|
||
|
if (!sys_config('config_export_siid')
|
||
|
&& !sys_config('config_export_com')
|
||
|
&& !sys_config('config_export_to_name')
|
||
|
&& !sys_config('config_export_to_tel')
|
||
|
&& !sys_config('config_export_to_address')
|
||
|
) {
|
||
|
$res = false;
|
||
|
}
|
||
|
}
|
||
|
return app('json')->success(['isOpen' => $res]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param ServeServices $services
|
||
|
* @return \think\Response
|
||
|
* @author 等风来
|
||
|
* @email 136327134@qq.com
|
||
|
* @date 2023/5/15
|
||
|
*/
|
||
|
public function getShipmentOrderList(ServeServices $services)
|
||
|
{
|
||
|
$where = $this->request->getMore([
|
||
|
['page', 1],
|
||
|
['limit', 10],
|
||
|
]);
|
||
|
|
||
|
return app('json')->success($services->express()->getShipmentOrderList($where));
|
||
|
}
|
||
|
}
|