|
|
@@ -55,13 +55,13 @@ foreach ($points_vente as $pv) { |
|
|
|
$add = false; |
|
|
|
foreach ($c->commandeProduits as $cp) { |
|
|
|
if ($p->id == $cp->id_produit) { |
|
|
|
$str_produits .= $cp->quantite . ' x ' . $p->nom . '<br /> '; |
|
|
|
$str_produits .= $cp->quantite . ' ' . $p->nom . ', '; |
|
|
|
$add = true; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
$html .= '<td>'.substr($str_produits, 0, strlen($str_produits) - 2).'</td>'; |
|
|
|
$html .= '<td>'.$c->commentaire.'</td>'; |
|
|
|
$html .= '<td>'.number_format($c->montant, 2) . ' € '; |
|
|
@@ -95,11 +95,13 @@ foreach ($points_vente as $pv) { |
|
|
|
$str_quantite = ''; |
|
|
|
if ($quantite) { |
|
|
|
$str_quantite = $quantite; |
|
|
|
$str_produits .= $str_quantite .' x '. $p->nom . '<br />'; |
|
|
|
$str_produits .= $str_quantite .' '. $p->nom . ', '; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
$str_produits = substr($str_produits, 0, strlen($str_produits) - 2) ; |
|
|
|
|
|
|
|
$html .= '<td>'.$str_produits.'</td><td></td>' ; |
|
|
|
$html .= '<td><strong>'.number_format($pv->recettes_pain, 2) . ' €</strong></td>'; |
|
|
|
|
|
|
@@ -135,9 +137,12 @@ foreach ($points_vente as $pv) |
|
|
|
} |
|
|
|
|
|
|
|
if(strlen($str_quantite)) |
|
|
|
$html .= $str_quantite . ' x '.$p->nom.'<br />' ; |
|
|
|
$html .= $str_quantite . ' '.$p->nom.', ' ; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
$html = substr($html, 0, strlen($html) - 2) ; |
|
|
|
|
|
|
|
$html .= '</td><td>'.number_format($pv->recettes_pain, 2).' €</td></tr>' ; |
|
|
|
$recettes += $pv->recettes_pain ; |
|
|
|
} |
|
|
@@ -149,9 +154,12 @@ foreach ($produits as $p) { |
|
|
|
if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) { |
|
|
|
$quantite = Commande::getQuantiteProduit($p->id, $commandes); |
|
|
|
if(!$p->vrac && $quantite) |
|
|
|
$html .= $quantite . ' x '.$p->nom.'<br />' ; |
|
|
|
$html .= $quantite . ' '.$p->nom.', ' ; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
$html = substr($html, 0, strlen($html) - 2) ; |
|
|
|
|
|
|
|
$html .= '</td><td><strong>'.number_format($recettes, 2).' €</strong></td></tr>' ; |
|
|
|
|
|
|
|
$html .= '</tbody></table>' ; |