Ver código fonte

Merge branch 'develop'

master
Guillaume Bourgeois 7 meses atrás
pai
commit
86281accba
2 arquivos alterados com 6 adições e 5 exclusões
  1. +2
    -2
      backend/controllers/DashboardAdminController.php
  2. +4
    -3
      domain/Order/Order/OrderRepository.php

+ 2
- 2
backend/controllers/DashboardAdminController.php Ver arquivo

@@ -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_statistics5') ?: ''
'statisticsCacheHtml' => \Yii::$app->cache->get('dashboard_statistics10') ?: ''
]);
}

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

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

+ 4
- 3
domain/Order/Order/OrderRepository.php Ver arquivo

@@ -448,11 +448,12 @@ class OrderRepository extends AbstractRepository

public function getTurnoverLastThirtyDays()
{
$now = new \DateTime();
$today = new \DateTime();
$thirtyDaysBefore = (clone $today)->modify('-30 days');

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


Carregando…
Cancelar
Salvar