You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

173 lines
6.3KB

  1. <?php
  2. namespace backend\controllers;
  3. use yii\web\Controller;
  4. use yii\filters\AccessControl;
  5. use Yii;
  6. use common\models\User;
  7. use common\models\Commande;
  8. use DateTime;
  9. use DateInterval;
  10. use DatePeriod;
  11. class StatsController extends BackendController {
  12. public function behaviors() {
  13. return [
  14. 'access' => [
  15. 'class' => AccessControl::className(),
  16. 'rules' => [
  17. [
  18. 'allow' => true,
  19. 'roles' => ['@'],
  20. 'matchCallback' => function ($rule, $action) {
  21. return Yii::$app->user->identity->status == USER::STATUS_ADMIN
  22. || Yii::$app->user->identity->status == USER::STATUS_BOULANGER;
  23. }
  24. ]
  25. ],
  26. ],
  27. ];
  28. }
  29. public function actionIndex() {
  30. /*
  31. * Volume de commande de l'année passée (par mois)
  32. */
  33. $date_start = date('Y-m-d', time() - 60 * 60 * 24 * 365);
  34. $date_end = date('Y-m-d');
  35. $data_pain = [];
  36. // labels
  37. $data_labels = [];
  38. $start = new DateTime($date_start);
  39. $interval = new DateInterval('P1M');
  40. $end = new DateTime($date_end);
  41. $period = new DatePeriod($start, $interval, $end);
  42. foreach ($period as $date) {
  43. $mois = date('m/Y', $date->getTimestamp());
  44. $data_labels[] = $mois;
  45. $data_pain[$mois] = 0;
  46. }
  47. // commandes
  48. $commandes = Commande::find()
  49. ->with('commandeProduits')
  50. ->joinWith('production')
  51. ->where('production.date > ' . $date_start)
  52. ->andWhere('production.id_etablissement = ' . Yii::$app->user->identity->id_etablissement)
  53. ->all();
  54. foreach ($commandes as $c) {
  55. $c->init();
  56. $mois = date('m/Y', strtotime($c->production->date));
  57. if (isset($data_pain[$mois])) {
  58. $data_pain[$mois] += $c->montant_pain;
  59. }
  60. }
  61. // création d'un tableau sans index car chart.js n'accepte pas les index
  62. $data_pain_noindex = [];
  63. foreach ($data_pain as $key => $val) {
  64. $data_pain_noindex[] = $val;
  65. }
  66. return $this->render('index', [
  67. 'data_labels' => $data_labels,
  68. 'data_pain' => $data_pain_noindex,
  69. ]);
  70. }
  71. const TOTAUX = 13 ;
  72. public function actionProduits($year = 0) {
  73. if(!$year) $year = date('Y') ;
  74. $produits = Produit::find()
  75. ->where('(vrac IS NULL OR vrac = 0)')
  76. ->andWhere(['id_etablissement' => Yii::$app->user->identity->id_etablissement])
  77. ->orderBy('order ASC')
  78. ->all() ;
  79. $arr_produits = [] ;
  80. $arr_produits[self::TOTAUX] = ['max' => [], 'commandes' => []] ;
  81. foreach($produits as $p) {
  82. $arr_produits[self::TOTAUX]['max'][$p['nom']] = 0 ;
  83. $arr_produits[self::TOTAUX]['commandes'][$p['nom']] = 0 ;
  84. }
  85. $empty = true ;
  86. for($i = 1; $i <= 12; $i++) {
  87. // Maximums
  88. $res_maximums = Yii::$app->db->createCommand("SELECT produit.nom, SUM(IF(production_produit.actif,production_produit.quantite_max,0)) AS total
  89. FROM production, production_produit, produit
  90. WHERE production.id_etablissement = ".Yii::$app->user->identity->id_etablissement."
  91. AND production.date >= :date_begin
  92. AND production.date <= :date_end
  93. AND production.id = production_produit.id_production
  94. AND production_produit.id_produit = produit.id
  95. GROUP BY produit.id
  96. ORDER BY produit.nom")
  97. ->bindValue(':date_begin', date($year.'-'.str_pad($i, 2, 0, STR_PAD_LEFT).'-01'))
  98. ->bindValue(':date_end', date($year.'-'.str_pad($i, 2, 0, STR_PAD_LEFT).'-31'))
  99. ->queryAll();
  100. $arr_produits[$i]['max'] = $res_maximums ;
  101. if(count($res_maximums)) $empty = false ;
  102. foreach($res_maximums as $produit_max) {
  103. if(!isset($arr_produits[self::TOTAUX]['max'][$produit_max['nom']])) $arr_produits[self::TOTAUX]['max'][$produit_max['nom']] = 0 ;
  104. $arr_produits[self::TOTAUX]['max'][$produit_max['nom']] += $produit_max['total'] ;
  105. }
  106. // Commandés
  107. $res_commandes = Yii::$app->db->createCommand("SELECT produit.nom, SUM(commande_produit.quantite) AS total
  108. FROM production, commande, commande_produit, produit
  109. WHERE production.id_etablissement = ".Yii::$app->user->identity->id_etablissement."
  110. AND production.date >= :date_begin
  111. AND production.date <= :date_end
  112. AND production.id = commande.id_production
  113. AND commande.id = commande_produit.id_commande
  114. AND commande_produit.id_produit = produit.id
  115. GROUP BY produit.id
  116. ORDER BY produit.nom")
  117. ->bindValue(':date_begin', date($year.'-'.str_pad($i, 2, 0, STR_PAD_LEFT).'-01'))
  118. ->bindValue(':date_end', date($year.'-'.str_pad($i, 2, 0, STR_PAD_LEFT).'-31'))
  119. ->queryAll();
  120. $arr_produits[$i]['commandes'] = $res_commandes ;
  121. if(count($res_commandes)) $empty = false ;
  122. foreach($res_commandes as $produit_commandes) {
  123. if(!isset($arr_produits[self::TOTAUX]['commandes'][$produit_commandes['nom']])) $arr_produits[self::TOTAUX]['commandes'][$produit_commandes['nom']] = 0 ;
  124. $arr_produits[self::TOTAUX]['commandes'][$produit_commandes['nom']] += $produit_commandes['total'] ;
  125. }
  126. }
  127. ksort($arr_produits) ;
  128. $arr_mois = ['Janvier','Février','Mars','Avril','Mai','Juin','Juillet','Août','Septembre','Octobre','Novembre','Décembre','Totaux'] ;
  129. return $this->render('produits', [
  130. 'year' => $year,
  131. 'arr_mois' => $arr_mois,
  132. 'produits' => $produits,
  133. 'arr_produits' => $arr_produits,
  134. 'empty' => $empty
  135. ]);
  136. }
  137. }
  138. ?>