Browse Source

[backend] Producteurs : somme des abonnements

refactoring
Guillaume 4 years ago
parent
commit
f040d15ff8
1 changed files with 2 additions and 5 deletions
  1. +2
    -5
      backend/controllers/ProducerAdminController.php

+ 2
- 5
backend/controllers/ProducerAdminController.php View File

@@ -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) {

Loading…
Cancel
Save