You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
3.5KB

  1. <?php
  2. use common\models\Commande ;
  3. $num_jour_semaine = date('w', strtotime($date));
  4. $arr_jour_semaine = [0 => 'dimanche', 1 => 'lundi', 2 => 'mardi', 3 => 'mercredi', 4 => 'jeudi', 5 => 'vendredi', 6 => 'samedi'];
  5. $champs_horaires_point_vente = 'horaires_' . $arr_jour_semaine[$num_jour_semaine];
  6. $html = '' ;
  7. // par point de vente
  8. foreach ($points_vente as $pv) {
  9. if (count($pv->commandes) && strlen($pv->$champs_horaires_point_vente)) {
  10. $html .= '<h3>'.$pv->nom.'</h3>' ;
  11. $html .= '<table class="table table-bordered">'
  12. . '<thead>'
  13. . '<tr>'
  14. . '<th>Client</th>'
  15. . '<th>Produits</th>'
  16. . '<th>Commentaire</th>'
  17. . '<th>Montant</th>'
  18. . '</tr>'
  19. . '<tbody>';
  20. foreach ($pv->commandes as $c) {
  21. $html .= '<tr>' ;
  22. $str_user = '';
  23. // username
  24. if ($c->user) {
  25. $str_user = $c->user->prenom . " " . $c->user->nom; //.' - '.date('d/m', strtotime($c->date)) ;
  26. } else {
  27. $str_user = $c->username; //.' - '.date('d/m', strtotime($c->date)) ;
  28. }
  29. // téléphone
  30. if (isset($c->user) && strlen($c->user->telephone)) {
  31. $str_user .= '<br />' . $c->user->telephone . '';
  32. }
  33. $html .= '<td>'.$str_user.'</td>';
  34. // produits
  35. $str_produits = '';
  36. foreach ($produits as $p) {
  37. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  38. $add = false;
  39. foreach ($c->commandeProduits as $cp) {
  40. if ($p->id == $cp->id_produit) {
  41. $str_produits .= $cp->quantite . ' x ' . $p->nom . '<br /> ';
  42. $add = true;
  43. }
  44. }
  45. }
  46. }
  47. $html .= '<td>'.substr($str_produits, 0, strlen($str_produits) - 2).'</td>';
  48. $html .= '<td>'.$c->commentaire.'</td>';
  49. $html .= '<td>'.number_format($c->montant, 2) . ' €'.'</td>';
  50. $html .= '</tr>' ;
  51. }
  52. $html .= '<tr><td><strong>Total</strong></td>' ;
  53. $str_produits = '';
  54. foreach ($produits as $p) {
  55. if (!$p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  56. $quantite = Commande::getQuantiteProduit($p->id, $pv->commandes);
  57. $str_quantite = '';
  58. if ($quantite) {
  59. $str_quantite = $quantite;
  60. $str_produits .= $str_quantite .' x '. $p->nom . '<br />';
  61. }
  62. }
  63. }
  64. $html .= '<td>'.$str_produits.'</td><td></td>' ;
  65. $html .= '<td><strong>'.number_format($pv->recettes_pain, 2) . ' €</strong></td>';
  66. $html .= '</tbody></table><pagebreak>' ;
  67. }
  68. }
  69. // on enlève le dernier "pagebreak"
  70. $html = substr($html, 0, strlen($html) - 11) ;
  71. echo $html ;
  72. ?>