|
|
@@ -74,7 +74,6 @@ $producer = Producer::getCurrent() ; |
|
|
|
<?php |
|
|
|
|
|
|
|
$pastDistributionsArray = Distribution::find() |
|
|
|
->with('order') |
|
|
|
->where(['<', 'distribution.date', date('Y-m-d')]) |
|
|
|
->andWhere([ |
|
|
|
'distribution.id_producer' => Producer::getId(), |
|
|
@@ -87,7 +86,6 @@ $producer = Producer::getCurrent() ; |
|
|
|
$pastDistributionsArray = array_reverse($pastDistributionsArray) ; |
|
|
|
|
|
|
|
$incomingDistributionsArray = Distribution::find() |
|
|
|
->with('order') |
|
|
|
->where(['>=', 'distribution.date', date('Y-m-d')]) |
|
|
|
->andWhere([ |
|
|
|
'distribution.id_producer' => Producer::getId(), |