|
|
|
|
|
|
|
|
|
|
|
|
|
|
// production_point_vente à définir s'ils ne sont pas initialisés |
|
|
// production_point_vente à définir s'ils ne sont pas initialisés |
|
|
if($production && $production->actif) { |
|
|
if($production && $production->actif) { |
|
|
$count_productions_point_vente = self::find()-> |
|
|
|
|
|
where([ |
|
|
|
|
|
'id_production' => $production->id |
|
|
|
|
|
]) |
|
|
|
|
|
->count() ; |
|
|
|
|
|
|
|
|
$count_productions_point_vente = ProductionPointVente::find()-> |
|
|
|
|
|
where([ |
|
|
|
|
|
'id_production' => $production->id |
|
|
|
|
|
]) |
|
|
|
|
|
->count() ; |
|
|
|
|
|
|
|
|
ProductionPointVente::setAll($production->id, true) ; |
|
|
ProductionPointVente::setAll($production->id, true) ; |
|
|
} |
|
|
} |