Files
huangjingfen/pro_v3.5.1/app/controller/admin/v1/supplier/Common.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

101 lines
3.0 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\controller\admin\v1\supplier;
use app\controller\admin\AuthController;
use app\services\order\supplier\SupplierOrderServices;
use app\services\supplier\SystemSupplierServices;
/**
* 公共接口基类 主要存放公共接口
* Class Common
* @package app\controller\admin
*/
class Common extends AuthController
{
/**
* 首页运营头部统计
* @param SupplierOrderServices $orderServices
* @return mixed
*/
public function homeStatics(SupplierOrderServices $orderServices)
{
[$supplierId, $time] = $this->request->getMore([
['supplier_id', 0],
['data', '', '', 'time']
], true);
$time = $orderServices->timeHandle($time, true);
$data = $orderServices->homeStatics((int)$supplierId, $time);
return $this->success($data);
}
/**
* 营业趋势图表
* @param SupplierOrderServices $orderServices
* @return mixed
*/
public function orderChart(SupplierOrderServices $orderServices)
{
[$supplierId, $time] = $this->request->getMore([
['supplier_id', 0],
['data', '', '', 'time']
], true);
$time = $orderServices->timeHandle($time, true);
$data = $orderServices->orderCharts((int)$supplierId, $time);
return $this->success($data);
}
/**
* 订单类型分析
* @param SupplierOrderServices $orderServices
* @return mixed
*/
public function orderType(SupplierOrderServices $orderServices)
{
[$supplierId, $time] = $this->request->getMore([
['supplier_id', 0],
['data', '', '', 'time']
], true);
$time = $orderServices->timeHandle($time, true);
$data = $orderServices->getOrderType((int)$supplierId, $time);
return $this->success($data);
}
/**
* 订单来源分析
* @param SupplierOrderServices $orderServices
* @return mixed
*/
public function orderChannel(SupplierOrderServices $orderServices)
{
[$supplierId, $time] = $this->request->getMore([
['supplier_id', 0],
['data', '', '', 'time']
], true);
$time = $orderServices->timeHandle($time, true);
$data = $orderServices->getOrderChannel((int)$supplierId, $time);
return $this->success($data);
}
/**
* 首页供应商统计
* @param SystemSupplierServices $supplierServices
* @return mixed
*/
public function supplierChart(SystemSupplierServices $supplierServices)
{
[$supplierId, $time] = $this->request->getMore([
['supplier_id', 0],
['data', '', '', 'time']
], true);
$time = $supplierServices->timeHandle($time);
return $this->success($supplierServices->supplierChart((int)$supplierId, $time));
}
}