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.

141 lines
5.1KB

  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. // par point de vente
  70. $html .= '<h3>Points de vente</h3>' ;
  71. $html .= '<table class="table table-bordered">'
  72. . '<thead>'
  73. . '<tr>'
  74. . '<th>Point de vente</th>'
  75. . '<th>Produits</th>'
  76. . '<th>Montant</th>'
  77. . '</tr>'
  78. . '<tbody>';
  79. $recettes = 0 ;
  80. foreach ($points_vente as $pv)
  81. {
  82. if (count($pv->commandes) && strlen($pv->$champs_horaires_point_vente))
  83. {
  84. $html .= '<tr><td>'.$pv->nom.'</td><td>' ;
  85. foreach ($produits as $p) {
  86. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  87. $quantite = Commande::getQuantiteProduit($p->id, $pv->commandes);
  88. $str_quantite = '';
  89. if (!$p->vrac) {
  90. if ($quantite)
  91. $str_quantite = $quantite;
  92. }
  93. if(strlen($str_quantite))
  94. $html .= $str_quantite . ' x '.$p->nom.'<br />' ;
  95. }
  96. }
  97. $html .= '</td><td>'.number_format($pv->recettes_pain, 2).' €</td></tr>' ;
  98. $recettes += $pv->recettes_pain ;
  99. }
  100. }
  101. // total
  102. $html .= '<tr><td><strong>Total</strong></td><td>' ;
  103. foreach ($produits as $p) {
  104. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  105. $quantite = Commande::getQuantiteProduit($p->id, $commandes);
  106. if(!$p->vrac && $quantite)
  107. $html .= $quantite . ' x '.$p->nom.'<br />' ;
  108. }
  109. }
  110. $html .= '</td><td><strong>'.number_format($recettes, 2).' €</strong></td></tr>' ;
  111. $html .= '</tbody></table>' ;
  112. echo $html ;
  113. ?>