// sauvegarde des produits | // sauvegarde des produits | ||||
foreach ($produits as $p) { | foreach ($produits as $p) { | ||||
// le produit doit etre dispo à la vente | |||||
if (isset($produits_dispos[$p->id]) && $produits_dispos[$p->id]['actif']) { | |||||
if (isset($produits_dispos[$p->id])) { | |||||
$commande_produit = new CommandeProduit(); | $commande_produit = new CommandeProduit(); | ||||
$commande_produit->id_commande = $commande->id; | $commande_produit->id_commande = $commande->id; |