feat(WorkbenchController): 修改本月订单数和本月支付人数的统计方式
This commit is contained in:
parent
325014ee99
commit
e210bb7906
@ -704,8 +704,8 @@ class WorkbenchController extends BaseAdminController
|
||||
]
|
||||
],
|
||||
"month" => [
|
||||
WorkbenchLogic::month_order_count($dates_two,'本月订单数'),
|
||||
WorkbenchLogic::month_order_count($dates_two,'本月支付人数')
|
||||
WorkbenchLogic::month_order_count('本月订单数'),
|
||||
WorkbenchLogic::month_order_count('本月支付人数')
|
||||
]
|
||||
]
|
||||
];
|
||||
|
@ -74,9 +74,6 @@ class BaseLikeController extends BaseController
|
||||
}
|
||||
|
||||
|
||||
// #[
|
||||
// ApiDoc\Title('是否免登录验证'),
|
||||
// ]
|
||||
public function isNotNeedLogin() : bool
|
||||
{
|
||||
$notNeedLogin = $this->notNeedLogin;
|
||||
|
@ -8,7 +8,7 @@ use think\model\concern\SoftDelete;
|
||||
|
||||
|
||||
/**
|
||||
* 计量单位
|
||||
* 商品浏览分析
|
||||
* Class StoreProductUnit
|
||||
* @package app\common\model\store_product_unit
|
||||
*/
|
||||
|
107
app/statistics/controller/IndexController.php
Normal file
107
app/statistics/controller/IndexController.php
Normal file
@ -0,0 +1,107 @@
|
||||
<?php
|
||||
|
||||
namespace app\statistics\controller;
|
||||
|
||||
use app\common\controller\BaseLikeController;
|
||||
use app\statistics\logic\OrderLogic;
|
||||
use app\statistics\logic\ProductLogic;
|
||||
use app\statistics\logic\UserLogic;
|
||||
use DateTime;
|
||||
|
||||
class IndexController extends BaseLikeController
|
||||
{
|
||||
|
||||
public function index()
|
||||
{
|
||||
$res = OrderLogic::dayPayPrice(5);
|
||||
if (OrderLogic::hasError()) {
|
||||
return $this->fail(OrderLogic::getError()); //获取错误信息并返回错误信息
|
||||
}
|
||||
return $this->success('ok', ['dayPayPrice' => $res]);
|
||||
}
|
||||
public function user()
|
||||
{
|
||||
$today = strtotime(date('Y-m-d'));
|
||||
$dates=[];
|
||||
// 循环输出前5天的日期
|
||||
for ($i = 0; $i <= 4; $i++) {
|
||||
// 计算前第$i天的日期时间戳
|
||||
$timestamp = $today - ($i * 86400); // 86400秒等于1天
|
||||
|
||||
// 将时间戳格式化为日期
|
||||
$date = date('Y-m-d', $timestamp);
|
||||
$dates[]=$date;
|
||||
}
|
||||
$res = UserLogic::userCount(5,$dates);
|
||||
if (UserLogic::hasError()) {
|
||||
return $this->fail(UserLogic::getError()); //获取错误信息并返回错误信息
|
||||
}
|
||||
return $this->success('ok', $res);
|
||||
}
|
||||
|
||||
/**
|
||||
* 中间商品统计
|
||||
*/
|
||||
public function product_count()
|
||||
{
|
||||
$res = ProductLogic::Count(5);
|
||||
if (ProductLogic::hasError()) {
|
||||
return $this->fail(ProductLogic::getError()); //获取错误信息并返回错误信息
|
||||
}
|
||||
return $this->success('ok', $res);
|
||||
}
|
||||
/**
|
||||
* 订单统计
|
||||
*/
|
||||
public function order_user_num_count()
|
||||
{
|
||||
$res = OrderLogic::Count(5);
|
||||
if (ProductLogic::hasError()) {
|
||||
return $this->fail(ProductLogic::getError()); //获取错误信息并返回错误信息
|
||||
}
|
||||
return $this->success('ok', $res);
|
||||
}
|
||||
/**
|
||||
* 商品销量排行榜统计
|
||||
*/
|
||||
public function sales_ranking()
|
||||
{
|
||||
$res = ProductLogic::sales(5);
|
||||
if (ProductLogic::hasError()) {
|
||||
return $this->fail(ProductLogic::getError()); //获取错误信息并返回错误信息
|
||||
}
|
||||
return $this->success('ok', $res);
|
||||
}
|
||||
/**
|
||||
* 成交用户数据
|
||||
*/
|
||||
public function user_trade_count()
|
||||
{
|
||||
$dates = [];
|
||||
|
||||
$today = new DateTime();
|
||||
$thirtyDaysAgo = new DateTime($today->format('Y-m-d'));
|
||||
$thirtyDaysAgo->modify('-30 days');
|
||||
for ($i = 0; $i < 31; $i++) {
|
||||
$date = new DateTime($thirtyDaysAgo->format('Y-m-d'));
|
||||
$date->modify('+' . $i . ' days');
|
||||
$dates[] = $date->format('Y-m-d');
|
||||
}
|
||||
$res = UserLogic::TradeCount(5, $dates);
|
||||
if (UserLogic::hasError()) {
|
||||
return $this->fail(UserLogic::getError()); //获取错误信息并返回错误信息
|
||||
}
|
||||
return $this->success('ok', $res);
|
||||
}
|
||||
/**
|
||||
* 当日订单金额
|
||||
*/
|
||||
public function street_currday_order_count()
|
||||
{
|
||||
$res = OrderLogic::Currday(5);
|
||||
if (ProductLogic::hasError()) {
|
||||
return $this->fail(ProductLogic::getError()); //获取错误信息并返回错误信息
|
||||
}
|
||||
return $this->success('ok', $res);
|
||||
}
|
||||
}
|
69
app/statistics/logic/OrderLogic.php
Normal file
69
app/statistics/logic/OrderLogic.php
Normal file
@ -0,0 +1,69 @@
|
||||
<?php
|
||||
|
||||
namespace app\statistics\logic;
|
||||
|
||||
use app\common\logic\BaseLogic;
|
||||
use app\common\model\store_order\StoreOrder;
|
||||
use app\common\model\user_recharge\UserRecharge;
|
||||
|
||||
class OrderLogic extends BaseLogic
|
||||
{
|
||||
public static function Count($store_id)
|
||||
{
|
||||
$orderNum = StoreOrder::where('store_id', $store_id)->whereDay('create_time')->count();
|
||||
$orderPayNum = StoreOrder::where('store_id', $store_id)->where('paid', 1)->whereDay('create_time')->group('uid')->count();
|
||||
$monthOrderNum = StoreOrder::where('store_id', $store_id)->whereMonth('create_time')->count();
|
||||
$monthOrderPayNum = StoreOrder::where('store_id', $store_id)->where('paid', 1)->whereMonth('create_time')->group('uid')->count();
|
||||
$data = [
|
||||
"orderNum" => $orderNum,
|
||||
"monthOrderNum" => $monthOrderNum,
|
||||
"monthOrderNumRate" => 0,
|
||||
"orderNumRate" => 0,
|
||||
"orderPayNum" => $orderPayNum,
|
||||
"monthOrderPayNum" => $monthOrderPayNum,
|
||||
"monthOrderPayRate" => 0,
|
||||
"orderOrderPayRate" => 0
|
||||
];
|
||||
return $data;
|
||||
}
|
||||
public static function Currday($store_id)
|
||||
{
|
||||
$date = date("Y-m-d");
|
||||
$startTime = strtotime($date . ' 00:00:00'); // 当天的开始时间戳
|
||||
$endTime = strtotime($date . ' 23:59:59'); // 当天的结束时间戳
|
||||
|
||||
$interval = 4 * 60 * 60; // 4小时的秒数
|
||||
$data = [];
|
||||
for ($time = $startTime; $time < $endTime; $time += $interval) {
|
||||
|
||||
$endTimeSegment = $time + $interval;
|
||||
$startTimeSegment = date('Y-m-d H:i:s', $time);
|
||||
$yesterendTimeSegment = date('Y-m-d H:i:s', $endTimeSegment - 86400);
|
||||
$endTimeSegment = date('Y-m-d H:i:s', $endTimeSegment);
|
||||
$yesterstartTimeSegment = date('Y-m-d H:i:s', $time - 86400);
|
||||
// 统计当前时间段的订单
|
||||
$todayAmount = StoreOrder::where('store_id', $store_id)
|
||||
->where('paid', 1)
|
||||
->whereBetween('create_time', [strtotime($startTimeSegment), strtotime($endTimeSegment)])
|
||||
->sum('pay_price');
|
||||
$yesterdayAmount = StoreOrder::where('store_id', $store_id)
|
||||
->where('paid', 1)
|
||||
->whereBetween('create_time', [strtotime($yesterstartTimeSegment), strtotime($yesterendTimeSegment)])
|
||||
->sum('pay_price');
|
||||
$data[] = [
|
||||
'todayAmount' => $todayAmount,
|
||||
'yesterdayAmount' => $yesterdayAmount,
|
||||
];
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
public static function dayPayPrice($store_id)
|
||||
{
|
||||
$todayAmount = UserRecharge::where('store_id', $store_id)
|
||||
->where('paid', 1)
|
||||
->whereDay('create_time')
|
||||
->sum('price');
|
||||
|
||||
return $todayAmount;
|
||||
}
|
||||
}
|
51
app/statistics/logic/ProductLogic.php
Normal file
51
app/statistics/logic/ProductLogic.php
Normal file
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
namespace app\statistics\logic;
|
||||
|
||||
use app\common\logic\BaseLogic;
|
||||
use app\common\model\store_branch_product\StoreBranchProduct;
|
||||
|
||||
class ProductLogic extends BaseLogic
|
||||
{
|
||||
public static function Count($store_id)
|
||||
{
|
||||
$todayProductCount=StoreBranchProduct::where('store_id',$store_id)->count();
|
||||
$yestertodayProductCount=StoreBranchProduct::where('store_id',$store_id)->where('create_time', '<',strtotime(date('Y-md'))-1)->count();
|
||||
if ($yestertodayProductCount == 0 ||$todayProductCount==0) {
|
||||
$weeklyProductTotalGrowthRate = 0;
|
||||
} else {
|
||||
$weeklyProductTotalGrowthRate = ($todayProductCount - $yestertodayProductCount) / $yestertodayProductCount * 100;
|
||||
}
|
||||
|
||||
$todayNewProductCount=StoreBranchProduct::where('store_id',$store_id)->whereDay('create_time')->count();
|
||||
$yestertodayNewProductCount=StoreBranchProduct::where('store_id',$store_id)->whereDay('create_time', 'yesterday')->count();
|
||||
if ($yestertodayProductCount == 0 ||$todayProductCount==0) {
|
||||
$weeklyNewProductTotalGrowthRate = 0;
|
||||
} else {
|
||||
$weeklyNewProductTotalGrowthRate = ($todayNewProductCount - $yestertodayNewProductCount) / $yestertodayNewProductCount * 100;
|
||||
}
|
||||
$data = [
|
||||
"totalProductCounInfo" => [
|
||||
"todayProductCount" => $todayProductCount,
|
||||
"yestertodayProductCount" => $yestertodayProductCount,
|
||||
"weeklyProductTotalGrowthRate" => $weeklyProductTotalGrowthRate
|
||||
],
|
||||
"newProductCountInfo" => [
|
||||
"todayNewProductCount" => 0,
|
||||
"yestertodayNewProductCount" => 0,
|
||||
"weeklyNewProductTotalGrowthRate" => $weeklyNewProductTotalGrowthRate
|
||||
],
|
||||
"merchantCountInfo" => [
|
||||
"todayMerchantCount" => 1,
|
||||
"yestertodayMerchantCount" => 1,
|
||||
"weeklyMerchantGrowthRate" => 0
|
||||
]
|
||||
];
|
||||
return $data;
|
||||
}
|
||||
|
||||
public static function sales($store_id){
|
||||
$select=StoreBranchProduct::where('store_id',$store_id)->limit(10)->order('sales desc')->field('id,store_name,image,sales')->select();
|
||||
return $select?->toArray();
|
||||
}
|
||||
}
|
33
app/statistics/logic/UserLogic.php
Normal file
33
app/statistics/logic/UserLogic.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace app\statistics\logic;
|
||||
|
||||
use app\common\logic\BaseLogic;
|
||||
use app\common\model\store_order\StoreOrder;
|
||||
use app\common\model\store_visit\StoreVisit;
|
||||
use app\common\model\user_recharge\UserRecharge;
|
||||
|
||||
class UserLogic extends BaseLogic
|
||||
{
|
||||
public static function userCount($store_id,$dates)
|
||||
{
|
||||
$data = [];
|
||||
foreach ($dates as $k=>$date) {
|
||||
$data[$k]['newUserCount']=UserRecharge::whereDay('create_time', $date)->where('store_id',$store_id)->where('paid',1)->where('recharge_type','INDUSTRYMEMBERS')->count();
|
||||
$data[$k]['viewUserCount']=StoreVisit::whereDay('create_time', $date)->where('store_id',$store_id)->group('uid')->count();
|
||||
$data[$k]['totalUserCount']=UserRecharge::where('create_time','<',strtotime($date) )->where('store_id',$store_id)->where('paid',1)->where('recharge_type','INDUSTRYMEMBERS')->count();
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
public static function TradeCount($store_id,$dates)
|
||||
{
|
||||
$data = [];
|
||||
foreach ($dates as $k=>$date) {
|
||||
$data[$k]['date']=$date;
|
||||
$data[$k]['visitUser']=StoreVisit::whereDay('create_time', $date)->where('store_id',$store_id)->cache('statistics_store_visit_count_' . $date, 300)->group('uid')->count();
|
||||
$data[$k]['orderUser']=StoreOrder::whereDay('create_time', $date)->where('store_id',$store_id)->cache('statistics_store_order_count_' . $date, 300)->group('uid')->count();
|
||||
$data[$k]['payOrderUser']=StoreOrder::whereDay('create_time', $date)->where('store_id',$store_id)->where('paid',1)->cache('statistics_store_order_pay_count_' . $date, 300)->group('uid')->count();
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
}
|
@ -38,5 +38,10 @@ return [
|
||||
app\store\middleware\InitMiddleware::class,
|
||||
app\store\middleware\LoginMiddleware::class,
|
||||
// app\store\middleware\AuthMiddleware::class,
|
||||
]
|
||||
],
|
||||
'statistics' => [
|
||||
// 跨域中间件
|
||||
app\common\http\middleware\AdminAllowMiddleware::class,
|
||||
|
||||
],
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user