瀏覽代碼

[Administration] Tableau de bord administrateur

feature/souke
Guillaume Bourgeois 9 月之前
父節點
當前提交
cfded52661
共有 2 個檔案被更改,包括 5 行新增4 行删除
  1. +2
    -2
      backend/controllers/DashboardAdminController.php
  2. +3
    -2
      domain/Order/Order/OrderRepository.php

+ 2
- 2
backend/controllers/DashboardAdminController.php 查看文件

@@ -74,7 +74,7 @@ class DashboardAdminController extends BackendController
'countUsersOnline' => $this->getUserModule()->getRepository()->countUsersOnline(),
'countTicketsAdminOpen' => $this->getTicketModule()->getRepository()->countTicketsAdminStatusOpen(),
'countTicketsAdminUnread' => $this->getTicketModule()->getRepository()->countTicketsAdminUnreadByUser($this->getUserCurrent()),
'statisticsCacheHtml' => \Yii::$app->cache->get('dashboard_statistics') ?: ''
'statisticsCacheHtml' => \Yii::$app->cache->get('dashboard_statistics5') ?: ''
]);
}

@@ -86,7 +86,7 @@ class DashboardAdminController extends BackendController

public function actionAjaxStatisticsHtml()
{
return \Yii::$app->cache->getOrSet('dashboard_statistics', function () {
return \Yii::$app->cache->getOrSet('dashboard_statistics5', function () {
$producerModule = $this->getProducerModule();
$pointSaleModule = $this->getPointSaleModule();
$userModule = $this->getUserModule();

+ 3
- 2
domain/Order/Order/OrderRepository.php 查看文件

@@ -449,9 +449,10 @@ class OrderRepository extends AbstractRepository
public function getTurnoverLastThirtyDays()
{
$now = new \DateTime();

return $this->getTurnoverByDateStartEnd(
$now,
$now->modify('-30 days')
$now->modify('-30 days'),
$now
);
}


Loading…
取消
儲存