Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

report.php 6.9KB

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