Explorar el Código

[backend] Producteurs : somme des abonnements

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

+ 2
- 5
backend/controllers/ProducerAdminController.php Ver fichero

@@ -91,16 +91,13 @@ class ProducerAdminController extends BackendController
$dataProviderProducer = new ActiveDataProvider([
'query' => Producer::find()
->with('userProducer', 'user')
->orderBy('free_price DESC'),
->orderBy('active DESC, free_price DESC'),
'pagination' => [
'pageSize' => 1000,
],
]);

$producersArray = Producer::find()
->with('userProducer', 'user')
->orderBy('free_price DESC')
->all();
$producersArray = Producer::find()->where('active = 1')->all();

$sumFreePrice = 0 ;
foreach($producersArray as $producer) {

Cargando…
Cancelar
Guardar