{ | { | ||||
$distributionsArray = Distribution::find() | $distributionsArray = Distribution::find() | ||||
->where('date > \'' . date('Y-m-d').'\'') | ->where('date > \'' . date('Y-m-d').'\'') | ||||
->andWhere(['id_producer' => Producer::getId()]) | |||||
->andWhere([ | |||||
'id_producer' => Producer::getId(), | |||||
'active' => 1 | |||||
]) | |||||
->orderBy('date ASC') | ->orderBy('date ASC') | ||||
->all(); | ->all(); | ||||