|
|
|
|
|
|
|
|
if ($produit->id == $id_produit_selec) { |
|
|
if ($produit->id == $id_produit_selec) { |
|
|
//echo $produit->nom.' : '.$produit_selec['quantite_max'].'<br />' ; |
|
|
//echo $produit->nom.' : '.$produit_selec['quantite_max'].'<br />' ; |
|
|
$ca_potentiel += $produit_selec['quantite_max'] * $produit->prix; |
|
|
$ca_potentiel += $produit_selec['quantite_max'] * $produit->prix; |
|
|
$poids_total += $produit_selec['quantite_max'] * $produit->poids; |
|
|
|
|
|
|
|
|
$poids_total += $produit_selec['quantite_max'] * $produit->poids/1000; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
->orderBy('date ASC') |
|
|
->orderBy('date ASC') |
|
|
->all(); |
|
|
->all(); |
|
|
|
|
|
|
|
|
|
|
|
$recettes = 0 ; |
|
|
|
|
|
$poids_pain = 0 ; |
|
|
foreach ($commandes as $c) |
|
|
foreach ($commandes as $c) |
|
|
{ |
|
|
{ |
|
|
$c->init(); |
|
|
$c->init(); |
|
|
|
|
|
$recettes += $c->montant ; |
|
|
|
|
|
$poids_pain += $c->poids_pain; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// produits selec pour production |
|
|
// produits selec pour production |
|
|
$produits_selec = ProductionProduit::findProduits($production->id); |
|
|
$produits_selec = ProductionProduit::findProduits($production->id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$ca_potentiel = 0; |
|
|
|
|
|
$poids_total = 0; |
|
|
|
|
|
foreach ($produits_selec as $id_produit_selec => $produit_selec) { |
|
|
|
|
|
if ($produit_selec['actif']) { |
|
|
|
|
|
foreach ($produits as $produit) { |
|
|
|
|
|
if ($produit->id == $id_produit_selec) { |
|
|
|
|
|
$ca_potentiel += $produit_selec['quantite_max'] * $produit->prix; |
|
|
|
|
|
$poids_total += $produit_selec['quantite_max'] * $produit->poids/1000; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
$html_totaux = $this->renderPartial('_total_commandes.php',[ |
|
|
$html_totaux = $this->renderPartial('_total_commandes.php',[ |
|
|
'produits' => $produits, |
|
|
'produits' => $produits, |
|
|
'commandes' => $commandes, |
|
|
'commandes' => $commandes, |
|
|
'produits_selec' => $produits_selec |
|
|
|
|
|
|
|
|
'produits_selec' => $produits_selec, |
|
|
|
|
|
'recettes_pain' => $recettes, |
|
|
|
|
|
'poids_total' => $poids_total, |
|
|
|
|
|
'ca_potentiel' => $ca_potentiel, |
|
|
|
|
|
'poids_pain' => $poids_pain, |
|
|
]); |
|
|
]); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo json_encode([ |
|
|
echo json_encode([ |
|
|
'html_totaux' => $html_totaux |
|
|
|
|
|
|
|
|
'html_totaux' => $html_totaux, |
|
|
|
|
|
|
|
|
]) ; |
|
|
]) ; |
|
|
|
|
|
|
|
|
} |
|
|
} |