Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

69 lines
2.4KB

  1. <?php
  2. $this->title = 'Statistiques produits' ;
  3. $this->params['breadcrumbs'][] = 'Statistiques produits';
  4. ?>
  5. <div class="stats-produits">
  6. <h1>Statistiques produits <?= $year ?></h1>
  7. <table class="table table-bordered table-hover header-fixed">
  8. <thead>
  9. <tr class="mois">
  10. <th></th>
  11. <th colspan="2">Janvier</th>
  12. <th colspan="2">Février</th>
  13. <th colspan="2">Mars</th>
  14. <th colspan="2">Avril</th>
  15. <th colspan="2">Mai</th>
  16. <th colspan="2">Juin</th>
  17. <th colspan="2">Juillet</th>
  18. <th colspan="2">Août</th>
  19. <th colspan="2">Septembre</th>
  20. <th colspan="2">Octobre</th>
  21. <th colspan="2">Novembre</th>
  22. <th colspan="2">Décembre</th>
  23. </tr>
  24. <tr class="sub-head">
  25. <th></th>
  26. <?php for($i=1; $i<=12; $i++): ?>
  27. <th>Maximum</th>
  28. <th>Commandés</th>
  29. <?php endfor; ?>
  30. </tr>
  31. </thead>
  32. <tbody>
  33. <?php foreach($arr_produits[1]['max'] as $produit_current): ?>
  34. <tr>
  35. <td class="nom"><?= $produit_current['nom'] ?></td>
  36. <?php foreach($arr_produits as $arr_produit_mois):
  37. $find_max = false ;
  38. $find_commandes = false ;
  39. ?>
  40. <!-- max -->
  41. <?php foreach($arr_produit_mois['max'] as $produit): ?>
  42. <?php if($produit['nom'] == $produit_current['nom']):
  43. $find_max = true ;
  44. ?>
  45. <td class="align-center"><?= $produit['total'] ?></td>
  46. <?php endif; ?>
  47. <?php endforeach; ?>
  48. <?php if(!$find_max): ?><td class="align-center">0</td><?php endif; ?>
  49. <!-- commandes -->
  50. <?php foreach($arr_produit_mois['commandes'] as $produit): ?>
  51. <?php if($produit['nom'] == $produit_current['nom']):
  52. $find_commandes = true ;
  53. ?>
  54. <td class="align-center"><?= $produit['total'] ?></td>
  55. <?php endif; ?>
  56. <?php endforeach; ?>
  57. <?php if(!$find_commandes): ?><td class="align-center">0</td><?php endif; ?>
  58. <?php endforeach; ?>
  59. </tr>
  60. <?php endforeach; ?>
  61. </tbody>
  62. </table>
  63. </div>