Explorar el Código

[backend] Rapport : correctif bug liste années

refactoring
Guillaume hace 4 años
padre
commit
63348dc065
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      backend/controllers/ReportController.php

+ 2
- 2
backend/controllers/ReportController.php Ver fichero

@@ -81,10 +81,10 @@ class ReportController extends BackendController
// distributions
$firstDistribution = Distribution::searchOne([], [
'orderby' => 'id ASC'
'orderby' => 'date ASC'
]) ;
$lastDistribution = Distribution::searchOne([], [
'orderby' => 'id DESC'
'orderby' => 'date DESC'
]) ;
$firstYear = date('Y',strtotime($firstDistribution->date)) ;

Cargando…
Cancelar
Guardar