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.
|
- <?php
-
- $this->title = 'Statistiques produits' ;
- $this->params['breadcrumbs'][] = 'Statistiques produits';
-
- ?>
- <div class="stats-produits">
-
- <h1>Statistiques produits <?= $year ?></h1>
-
- <table class="table table-bordered table-hover header-fixed">
- <thead>
- <tr class="mois">
- <th></th>
- <th colspan="2">Janvier</th>
- <th colspan="2">Février</th>
- <th colspan="2">Mars</th>
- <th colspan="2">Avril</th>
- <th colspan="2">Mai</th>
- <th colspan="2">Juin</th>
- <th colspan="2">Juillet</th>
- <th colspan="2">Août</th>
- <th colspan="2">Septembre</th>
- <th colspan="2">Octobre</th>
- <th colspan="2">Novembre</th>
- <th colspan="2">Décembre</th>
- </tr>
- <tr class="sub-head">
- <th></th>
- <?php for($i=1; $i<=12; $i++): ?>
- <th>Maximum</th>
- <th>Commandés</th>
- <?php endfor; ?>
- </tr>
- </thead>
- <tbody>
- <?php foreach($arr_produits[1]['max'] as $produit_current): ?>
- <tr>
- <td class="nom"><?= $produit_current['nom'] ?></td>
- <?php foreach($arr_produits as $arr_produit_mois):
- $find_max = false ;
- $find_commandes = false ;
- ?>
- <!-- max -->
- <?php foreach($arr_produit_mois['max'] as $produit): ?>
- <?php if($produit['nom'] == $produit_current['nom']):
- $find_max = true ;
- ?>
- <td class="align-center"><?= $produit['total'] ?></td>
- <?php endif; ?>
- <?php endforeach; ?>
- <?php if(!$find_max): ?><td class="align-center">0</td><?php endif; ?>
-
- <!-- commandes -->
- <?php foreach($arr_produit_mois['commandes'] as $produit): ?>
- <?php if($produit['nom'] == $produit_current['nom']):
- $find_commandes = true ;
- ?>
- <td class="align-center"><?= $produit['total'] ?></td>
- <?php endif; ?>
- <?php endforeach; ?>
- <?php if(!$find_commandes): ?><td class="align-center">0</td><?php endif; ?>
- <?php endforeach; ?>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
-
- </div>
|