|
|
@@ -1,5 +1,7 @@ |
|
|
|
<?php |
|
|
|
|
|
|
|
use \backend\controllers\StatsController ; |
|
|
|
|
|
|
|
$this->title = 'Statistiques produits' ; |
|
|
|
$this->params['breadcrumbs'][] = 'Statistiques produits'; |
|
|
|
|
|
|
@@ -27,7 +29,7 @@ $this->params['breadcrumbs'][] = 'Statistiques produits'; |
|
|
|
</tr> |
|
|
|
<tr class="sub-head"> |
|
|
|
<th></th> |
|
|
|
<?php for($i=1; $i<=12; $i++): ?> |
|
|
|
<?php for($i=1; $i<=13; $i++): ?> |
|
|
|
<th>Maximum</th> |
|
|
|
<th>Commandés</th> |
|
|
|
<?php endfor; ?> |
|
|
@@ -41,36 +43,65 @@ $this->params['breadcrumbs'][] = 'Statistiques produits'; |
|
|
|
$find_max = false ; |
|
|
|
$find_commandes = false ; |
|
|
|
?> |
|
|
|
<!-- max --> |
|
|
|
<?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 ; |
|
|
|
|
|
|
|
<?php if($mois != StatsController::TOTAUX): ?> |
|
|
|
|
|
|
|
<!-- max --> |
|
|
|
<?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"> |
|
|
|
<div <?= $tooltip; ?>><?= $produit['total'] ?></div> |
|
|
|
</td> |
|
|
|
<?php endif; ?> |
|
|
|
<?php endforeach; ?> |
|
|
|
<?php if(!$find_max): ?><td class="align-center"><div <?= $tooltip; ?>>0</div></td><?php endif; ?> |
|
|
|
|
|
|
|
<!-- commandes --> |
|
|
|
<?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"' ; |
|
|
|
?> |
|
|
|
<td class="align-center"> |
|
|
|
<div <?= $tooltip; ?>><?= $produit['total'] ?></div> |
|
|
|
</td> |
|
|
|
<?php endif; ?> |
|
|
|
<?php endforeach; ?> |
|
|
|
<?php if(!$find_max): ?><td class="align-center"><div <?= $tooltip; ?>>0</div></td><?php endif; ?> |
|
|
|
|
|
|
|
<!-- commandes --> |
|
|
|
<?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 ; |
|
|
|
<?php if($produit['nom'] == $produit_current['nom']): |
|
|
|
$find_commandes = true ; |
|
|
|
?> |
|
|
|
<td class="align-center"> |
|
|
|
<div <?= $tooltip ?> ><?= $produit['total'] ?></div> |
|
|
|
</td> |
|
|
|
<?php endif; ?> |
|
|
|
<?php endforeach; ?> |
|
|
|
<?php if(!$find_commandes): ?><td class="align-center"><div <?= $tooltip ?> >0</div></td><?php endif; ?> |
|
|
|
|
|
|
|
|
|
|
|
<?php else: ?> |
|
|
|
<!-- totaux max --> |
|
|
|
<?php foreach($arr_produits[StatsController::TOTAUX]['max'] as $nom_produit => $total_max): |
|
|
|
$tooltip = 'data-toggle="tooltip" data-placement="top" data-original-title="'.Html::encode($produit_current['nom']).' / Total '. $year .' / Maximums"' ; |
|
|
|
?> |
|
|
|
<?php if($nom_produit == $produit_current['nom']): ?> |
|
|
|
<td class="align-center"> |
|
|
|
<div <?= $tooltip ?> ><?= $total_max ?></div> |
|
|
|
</td> |
|
|
|
<?php endif; ?> |
|
|
|
<?php endforeach; ?> |
|
|
|
|
|
|
|
<!-- totaux commandés --> |
|
|
|
<?php foreach($arr_produits[StatsController::TOTAUX]['commandes'] as $nom_produit => $total_commandes): |
|
|
|
$tooltip = 'data-toggle="tooltip" data-placement="top" data-original-title="'.Html::encode($produit_current['nom']).' / Total '. $year .' / Commandés"' ; |
|
|
|
?> |
|
|
|
<td class="align-center"> |
|
|
|
<div <?= $tooltip ?> ><?= $produit['total'] ?></div> |
|
|
|
</td> |
|
|
|
<?php endif; ?> |
|
|
|
<?php endforeach; ?> |
|
|
|
<?php if(!$find_commandes): ?><td class="align-center"><div <?= $tooltip ?> >0</div></td><?php endif; ?> |
|
|
|
<?php if($nom_produit == $produit_current['nom']): ?> |
|
|
|
<td class="align-center"> |
|
|
|
<div <?= $tooltip ?> ><?= $total_commandes ?></div> |
|
|
|
</td> |
|
|
|
<?php endif; ?> |
|
|
|
<?php endforeach; ?> |
|
|
|
<?php endif; ?> |
|
|
|
<?php endforeach; ?> |
|
|
|
</tr> |
|
|
|
<?php endforeach; ?> |
|
|
|
|
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
|