|
|
@@ -17,22 +17,13 @@ $this->params['breadcrumbs'][] = 'Statistiques produits'; |
|
|
|
<div class="alert alert-warning">Aucune statistique disponible pour cette période</div> |
|
|
|
<?php else: ?> |
|
|
|
|
|
|
|
<table class="table table-bordered table-hover header-fixed"> |
|
|
|
<table id="table-stats-produits" 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> |
|
|
|
<?php foreach($arr_mois as $m): ?> |
|
|
|
<th colspan="2"><?= $m; ?></th> |
|
|
|
<?php endforeach; ?> |
|
|
|
</tr> |
|
|
|
<tr class="sub-head"> |
|
|
|
<th></th> |
|
|
@@ -45,30 +36,38 @@ $this->params['breadcrumbs'][] = 'Statistiques produits'; |
|
|
|
<tbody> |
|
|
|
<?php foreach($produits as $produit_current): ?> |
|
|
|
<tr> |
|
|
|
<td class="nom"><?= $produit_current['nom'] ?></td> |
|
|
|
<?php foreach($arr_produits as $arr_produit_mois): |
|
|
|
<td class="nom"><?= Html::encode($produit_current['nom']) ?></td> |
|
|
|
<?php foreach($arr_produits as $mois => $arr_produit_mois): |
|
|
|
$find_max = false ; |
|
|
|
$find_commandes = false ; |
|
|
|
?> |
|
|
|
<!-- max --> |
|
|
|
<?php foreach($arr_produit_mois['max'] as $produit): ?> |
|
|
|
<?php foreach($arr_produit_mois['max'] as $produit): |
|
|
|
$tooltip = 'data-toggle="tooltip" data-placement="top" data-original-title="'.Html::encode($produit_current['nom']).' / '.$arr_mois[$mois - 1] .' '. $year.' / Maximum"' ; |
|
|
|
?> |
|
|
|
<?php if($produit['nom'] == $produit_current['nom']): |
|
|
|
$find_max = true ; |
|
|
|
?> |
|
|
|
<td class="align-center"><?= $produit['total'] ?></td> |
|
|
|
<td class="align-center"> |
|
|
|
<div <?= $tooltip; ?>><?= $produit['total'] ?></div> |
|
|
|
</td> |
|
|
|
<?php endif; ?> |
|
|
|
<?php endforeach; ?> |
|
|
|
<?php if(!$find_max): ?><td class="align-center">0</td><?php endif; ?> |
|
|
|
<?php if(!$find_max): ?><td class="align-center"><div <?= $tooltip; ?>>0</div></td><?php endif; ?> |
|
|
|
|
|
|
|
<!-- commandes --> |
|
|
|
<?php foreach($arr_produit_mois['commandes'] as $produit): ?> |
|
|
|
<?php foreach($arr_produit_mois['commandes'] as $produit): |
|
|
|
$tooltip = 'data-toggle="tooltip" data-placement="top" data-original-title="'.Html::encode($produit_current['nom']).' / '. $arr_mois[$mois - 1] . ' '. $year .' / Commandés"' ; |
|
|
|
?> |
|
|
|
<?php if($produit['nom'] == $produit_current['nom']): |
|
|
|
$find_commandes = true ; |
|
|
|
?> |
|
|
|
<td class="align-center"><?= $produit['total'] ?></td> |
|
|
|
<td class="align-center"> |
|
|
|
<div <?= $tooltip ?> ><?= $produit['total'] ?></div> |
|
|
|
</td> |
|
|
|
<?php endif; ?> |
|
|
|
<?php endforeach; ?> |
|
|
|
<?php if(!$find_commandes): ?><td class="align-center">0</td><?php endif; ?> |
|
|
|
<?php if(!$find_commandes): ?><td class="align-center"><div <?= $tooltip ?> >0</div></td><?php endif; ?> |
|
|
|
<?php endforeach; ?> |
|
|
|
</tr> |
|
|
|
<?php endforeach; ?> |