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