Browse Source

Activer/désactiver les points de vente : adaptations (suite)

prodstable
keun 8 years ago
parent
commit
184406ffc3
1 changed files with 14 additions and 14 deletions
  1. +14
    -14
      backend/controllers/CommandeController.php

+ 14
- 14
backend/controllers/CommandeController.php View File

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

// produits // produits
$produits = Produit::getAll() ; $produits = Produit::getAll() ;

Loading…
Cancel
Save