<?php
|
|
namespace app\branch\controller\statistics;
|
|
use app\branch\controller\Controller;
|
use app\common\service\statistics\OrderService;
|
use app\common\service\statistics\ProductRankingService;
|
|
/**
|
* 销售数据控制器
|
*/
|
class Sales extends Controller
|
{
|
/**
|
* 销售数据统计
|
*/
|
public function index()
|
{
|
return $this->renderSuccess('', [
|
// 成交订单统计
|
'order' => (new OrderService($this->getBranchId()))->getData(),
|
// 成交商品统计
|
'product' => (new OrderService($this->getBranchId()))->getProductData(),
|
// 销量top10
|
'productSaleRanking' => (new ProductRankingService())->getSaleRanking($this->getBranchId()),
|
// 浏览top10
|
'productViewRanking' => (new ProductRankingService())->getViewRanking($this->getBranchId()),
|
// 退款top10
|
'productRefundRanking' => (new ProductRankingService())->getRefundRanking($this->getBranchId()),
|
]);
|
}
|
|
/**
|
* 通过时间段查询本期上期金额
|
* $type类型:order refund
|
*/
|
public function order($search_time, $type = 'order')
|
{
|
$days = $this->getDays($search_time);
|
$data = [];
|
if($type == 'order'){
|
$data = (new OrderService($this->getBranchId()))->getDataByDate($days);
|
}else if($type == 'refund'){
|
$data = (new OrderService($this->getBranchId()))->getRefundByDate($days);
|
}
|
return $this->renderSuccess('', [
|
// 日期
|
'days' => $days,
|
// 数据
|
'data' => $data,
|
]);
|
}
|
|
/**
|
* 通过时间段查询本期上期金额
|
*/
|
public function product($search_time)
|
{
|
$days = $this->getDays($search_time);
|
return $this->renderSuccess('', [
|
// 日期
|
'days' => $days,
|
// 数据
|
'data' => (new OrderService($this->getBranchId()))->getProductDataByDate($days),
|
]);
|
}
|
|
/**
|
* 获取具体日期数组
|
*/
|
private function getDays($search_time)
|
{
|
//搜索时间段
|
if(!isset($search_time) || empty($search_time)){
|
//没有传,则默认为最近7天
|
$end_time = date('Y-m-d', time());
|
$start_time = date('Y-m-d', strtotime('-7 day',time()));
|
}else{
|
$start_time = array_shift($search_time);
|
$end_time = array_pop($search_time);
|
}
|
|
$dt_start = strtotime($start_time);
|
$dt_end = strtotime($end_time);
|
$date = [];
|
$date[] = date('Y-m-d', strtotime($start_time));
|
while($dt_start < $dt_end) {
|
$date[] = date('Y-m-d', strtotime('+1 day',$dt_start));
|
$dt_start = strtotime('+1 day',$dt_start);
|
}
|
return $date;
|
}
|
}
|