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.

170 lines
6.2KB

  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. if(strlen($c->commentaire_point_vente))
  30. {
  31. $str_user .= '<br /><em>'.$c->commentaire_point_vente.'</em>' ;
  32. }
  33. // téléphone
  34. if (isset($c->user) && strlen($c->user->telephone)) {
  35. $str_user .= '<br />' . $c->user->telephone . '';
  36. }
  37. $html .= '<td>'.$str_user.'</td>';
  38. // produits
  39. $str_produits = '';
  40. foreach ($produits as $p) {
  41. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  42. $add = false;
  43. foreach ($c->commandeProduits as $cp) {
  44. if ($p->id == $cp->id_produit) {
  45. $str_produits .= $cp->quantite . '&nbsp;' . $p->nom . ', ';
  46. $add = true;
  47. }
  48. }
  49. }
  50. }
  51. $html .= '<td>'.substr($str_produits, 0, strlen($str_produits) - 2).'</td>';
  52. $html .= '<td>'.$c->commentaire.'</td>';
  53. $html .= '<td>'.number_format($c->montant, 2) . ' € ';
  54. if($c->getStatutPaiement() == Commande::STATUT_PAYEE)
  55. {
  56. $html .= '(payé)' ;
  57. }
  58. elseif($c->getStatutPaiement() == Commande::STATUT_IMPAYEE && $c->getMontantPaye())
  59. {
  60. $html .= '(reste '.$c->getMontantRestant(true).' à payer)' ;
  61. }
  62. elseif($c->getStatutPaiement() == Commande::STATUT_SURPLUS)
  63. {
  64. $html .= '(surplus : '.$c->getMontantSurplus(true).' à rembourser)' ;
  65. }
  66. $html .= '</td>' ;
  67. $html .= '</tr>' ;
  68. }
  69. $html .= '<tr><td><strong>Total</strong></td>' ;
  70. $str_produits = '';
  71. foreach ($produits as $p) {
  72. if (!$p->vrac && isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  73. $quantite = Commande::getQuantiteProduit($p->id, $pv->commandes);
  74. $str_quantite = '';
  75. if ($quantite) {
  76. $str_quantite = $quantite;
  77. $str_produits .= $str_quantite .'&nbsp;'. $p->nom . ', ';
  78. }
  79. }
  80. }
  81. $str_produits = substr($str_produits, 0, strlen($str_produits) - 2) ;
  82. $html .= '<td>'.$str_produits.'</td><td></td>' ;
  83. $html .= '<td><strong>'.number_format($pv->recettes_pain, 2) . ' €</strong></td>';
  84. $html .= '</tbody></table><pagebreak>' ;
  85. }
  86. }
  87. // par point de vente
  88. $html .= '<h3>Points de vente</h3>' ;
  89. $html .= '<table class="table table-bordered">'
  90. . '<thead>'
  91. . '<tr>'
  92. . '<th>Point de vente</th>'
  93. . '<th>Produits</th>'
  94. . '<th>Montant</th>'
  95. . '</tr>'
  96. . '<tbody>';
  97. $recettes = 0 ;
  98. foreach ($points_vente as $pv)
  99. {
  100. if (count($pv->commandes) && strlen($pv->$champs_horaires_point_vente))
  101. {
  102. $html .= '<tr><td>'.$pv->nom.'</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, $pv->commandes);
  106. $str_quantite = '';
  107. if (!$p->vrac) {
  108. if ($quantite)
  109. $str_quantite = $quantite;
  110. }
  111. if(strlen($str_quantite))
  112. $html .= $str_quantite . '&nbsp;'.$p->nom.', ' ;
  113. }
  114. }
  115. $html = substr($html, 0, strlen($html) - 2) ;
  116. $html .= '</td><td>'.number_format($pv->recettes_pain, 2).' €</td></tr>' ;
  117. $recettes += $pv->recettes_pain ;
  118. }
  119. }
  120. // total
  121. $html .= '<tr><td><strong>Total</strong></td><td>' ;
  122. foreach ($produits as $p) {
  123. if (isset($produits_selec[$p->id]['actif']) && $produits_selec[$p->id]['actif']) {
  124. $quantite = Commande::getQuantiteProduit($p->id, $commandes);
  125. if(!$p->vrac && $quantite)
  126. $html .= $quantite . '&nbsp;'.$p->nom.', ' ;
  127. }
  128. }
  129. $html = substr($html, 0, strlen($html) - 2) ;
  130. $html .= '</td><td><strong>'.number_format($recettes, 2).' €</strong></td></tr>' ;
  131. $html .= '</tbody></table>' ;
  132. echo $html ;
  133. ?>