Subversion Repositories Applications.gtt

Rev

Rev 122 | Rev 138 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
67 jpm 1
<?php
2
class GttCtrlActionStatTableauGlobal extends aControlleurAction {
3
 
4
	public function __construct(Registre $Registre)
5
    {
6
    	$Registre->ajouterEspace('StatTableauGlobal', 'stat_tableau_global');
7
    }
8
 
9
    public function executer()
10
    {
11
   		$aso_stat = array();
103 jpm 12
    	$this->getRegistre()->setTitre('Tableau récapitulatif');
67 jpm 13
 
14
    	//+-------------------------------------------------------------------------------------------------+
15
		// GESTION DES CALENDRIERS
16
		//+-------------------------------------------------------------------------------------------------+
17
		// Initialisation des variables pour le calendrier
18
		if (!isset($_GET['annee'])) {
19
			$_GET['annee'] = date('Y');
20
		}
21
		if (!isset($_GET['mois'])) {
22
			$_GET['mois'] = date('m');
23
		}
24
 
25
		// Construction de l'objet mois
26
		$Month = new Calendar_Month_Weeks($_GET['annee'], $_GET['mois']);
27
		$Month->build();
28
 
29
		// Construction du Calendrier
30
		$Calendrier = new Calendrier();
31
 
103 jpm 32
		// Construction de l'url pour les mois précédent/suivant
126 jpm 33
		$aso_stat['url_mois_courant'] = 'index.php?action='.GTT_ACTION_STAT_TAB_GLOB.'&amp;annee='.$Month->thisYear().'&amp;mois='.$Month->thisMonth();
67 jpm 34
		$PMonth = $Month->prevMonth('object');
35
		$aso_stat['url_mois_precedent'] = 'index.php?action='.GTT_ACTION_STAT_TAB_GLOB.'&amp;annee='.$PMonth->thisYear().'&amp;mois='.$PMonth->thisMonth();
36
		$NMonth = $Month->nextMonth('object');
37
		$aso_stat['url_mois_suivant'] = 'index.php?action='.GTT_ACTION_STAT_TAB_GLOB.'&amp;annee='.$NMonth->thisYear().'&amp;mois='.$NMonth->thisMonth();
38
		$aso_stat['mois']['mois'] = $Calendrier->getNomMois($Month->thisMonth());
39
		$aso_stat['mois']['annee'] = $Month->thisYear();
40
		$mois_courant_j1 = $Month->thisYear().'-'.sprintf("%02s", $Month->thisMonth()).'-'.sprintf("%02s", $Month->thisDay()).' 00:00:00';
41
		$mois_courant_j36 = date('Y-m-d H:i:s', mktime(0, 0, 0, $NMonth->thisMonth(), 0, $NMonth->thisYear()));
95 jpm 42
 
43
    	//+-------------------------------------------------------------------------------------------------+
44
		// GESTION D'INFO GLOBALES
45
		//+-------------------------------------------------------------------------------------------------+
116 jpm 46
		// Initialisation de variables
47
		$aso_stat['absences'] = false;
48
	    $aso_stat['categories'] = false;
49
 
103 jpm 50
		// Récupération des infos sur les utilisateurs
67 jpm 51
		$DaoUtilsateur = new Utilisateur();
52
    	$utilisateurs = $DaoUtilsateur->consulter(Utilisateur::GU_TOUS_AFFICHABLE);
116 jpm 53
 
54
    	if (false == $utilisateurs) {
55
    		$aso_stat['messages'][] = "Aucun utilisateur affichable de disponible...";
56
    	} else {
57
			// Initialisation de variables communes à la gestion des projets et des absences
58
			$aso_stat['total_absences_projets'] = 0;
107 jpm 59
 
116 jpm 60
		    // Récupération des motifs d'absence
61
			$AbsenceMotif = new AbsenceMotif();
62
			$cmd = AbsenceMotif::GAM_TOUS;
63
			$tab_am = $AbsenceMotif->consulter($cmd);
64
	    	if (false == $tab_am) {
65
				$aso_stat['messages'][] = "Aucun motif d'absence de renseigné";
67 jpm 66
	    	}
116 jpm 67
 
68
	    	// Pour chaque utilisateur nous récupérons les infos
69
			foreach ($utilisateurs as $Utilisateur) {
70
				// Initialisation du talbeau des infos sur l'utilisateur
71
			 	$aso_gestion = array(	'prenom_nom' => $Utilisateur->getPrenom().' '.$Utilisateur->getNom(),
72
			 							'total_w' => 0,
73
			 							'total_a' => 0,
74
		 								'total' => 0);
75
 
76
				//+-------------------------------------------------------------------------------------------------+
77
				// GESTION DES PROJETS
78
				//+-------------------------------------------------------------------------------------------------+
79
				// Initialisation de variables propre aux absences
80
				$aso_stat['total_projets'] = 0;
81
 
82
		    	// Récupération du temps de travail pour un utilisateur à une date donnée
83
		    	$TravailProjet = new TravailProjet();
84
				$cmd = TravailProjet::GTP_ID_UTILISATEUR_DATE_DEB_FIN;
85
				$param = array($Utilisateur->getIdUtilisateur(), $mois_courant_j1, $mois_courant_j36);
86
				$tab_tp = $TravailProjet->consulter($cmd, $param);
87
				if (false == $tab_tp) {
88
	    			$aso_stat['messages'][] = "Aucune information sur le travail de ${aso_gestion['prenom_nom']}";
89
	    		} else {
90
					// Récupération des identifiants des projets
91
			    	$tab_projet_id = array('');
92
			    	foreach ($tab_tp as $tp) {
93
			    		$tab_projet_id[0] .= $tp->getIdProjet().',';
94
			    	}
95
					$tab_projet_id[0] = rtrim($tab_projet_id[0], ',');
107 jpm 96
 
116 jpm 97
					// Récupération des infos sur les projets de l'utilisateur
98
			    	$Projet = new Projet();
99
			    	$tab_p = $Projet->consulter(Projet::GP_ID_LIST, $tab_projet_id);
100
 
101
					foreach ($tab_p as $Projet) {
102
						// Récupération de la catégorie du projet
103
						$ProjetCategorie = new ProjetCategorie();
104
						$cmd = ProjetCategorie::GPC_ID;
105
						$param = $Projet->getCeCategorie();
106
						$Categorie = current($ProjetCategorie->consulter($cmd, $param));
107 jpm 107
 
116 jpm 108
						// Info trans utilisateur sur les catégories
109
						if (!isset($aso_stat['categories'][$Categorie->getIdCategorie()])) {
110
							$aso_stat['categories'][$Categorie->getIdCategorie()] = array(	'projets' => array(),
111
																							'nom' => $Categorie->getLibelle(),
112
																							'total' => 0);
113
						}
114
						$aso_stat['categories'][$Categorie->getIdCategorie()]['projets'][$Projet->getIdProjet()] =
115
							array(	'nom' => $Projet->getNom(),
116
									'desc' => $Projet->getDescription());
107 jpm 117
 
116 jpm 118
						foreach ($tab_tp as $TP) {
119
							if ($TP->getIdProjet() == $Projet->getIdProjet()) {
120
								// Info trans utilisateur sur les catégories
121
								if (!isset($aso_stat['categories'][$Categorie->getIdCategorie()]['projets'][$Projet->getIdProjet()]['total'])) {
122
									$aso_stat['categories'][$Categorie->getIdCategorie()]['projets'][$Projet->getIdProjet()]['total'] = 0;
107 jpm 123
								} else {
116 jpm 124
									$aso_stat['categories'][$Categorie->getIdCategorie()]['projets'][$Projet->getIdProjet()]['total'] += $TP->getDuree();
107 jpm 125
								}
116 jpm 126
								$aso_stat['categories'][$Categorie->getIdCategorie()]['total'] += $TP->getDuree();
127
								// Stockage des infos nécessaire pour l'affichage d'un utilisateur
128
								if (!isset($aso_gestion['projets'][$Categorie->getIdCategorie()][$Projet->getIdProjet()])) {
129
									$aso_gestion['projets'][$Categorie->getIdCategorie()][$Projet->getIdProjet()] = array(
130
										'id' => $Projet->getIdProjet(),
131
										'nom' => $Projet->getNom(),
132
										'duree' => 0);
133
								}
134
								$aso_gestion['projets'][$Categorie->getIdCategorie()][$Projet->getIdProjet()]['duree'] += $TP->getDuree();
135
								$aso_gestion['total_w'] += $TP->getDuree();
67 jpm 136
							}
137
						}
138
					}
116 jpm 139
		    	}
140
				$aso_gestion['total'] = $aso_gestion['total_w'];
141
				$aso_stat['total_projets'] += $aso_gestion['total_w'];
142
 
143
				//+-------------------------------------------------------------------------------------------------+
144
				// GESTION DES ABSENCES
145
				//+-------------------------------------------------------------------------------------------------+
146
				// Initialisation de variables propre aux absences
147
				$aso_stat['total_absences'] = 0;
148
 
149
				// Récupération des absences pour un utilisateur à une date donnée
150
		    	$Absence = new Absence();
151
				$cmd = Absence::GA_ID_UTILISATEUR_DATE_DEB_FIN;
152
				$param = array($Utilisateur->getIdUtilisateur(), $mois_courant_j1, $mois_courant_j36);
153
				$tab_a = $Absence->consulter($cmd, $param);
154
				if (false == $tab_a) {
155
					$aso_stat['messages'][] = "Aucune information sur les absences de ${aso_gestion['prenom_nom']}";
156
				} else {
157
					if (false != $tab_am) {
158
						foreach ($tab_am as $AM) {
159
							$aso_stat['absences'][$AM->getIdAbsenceMotif()]['nom'] = $AM->getLibelle();
160
 
161
							//$aso_gestion['ab'][$AM->getIdAbsenceMotif()] = 0;
162
							foreach ($tab_a as $A) {
163
								if ($A->getIdAbsenceMotif() == $AM->getIdAbsenceMotif() && $A->getDuree() != 0) {
164
									if (!isset($aso_stat['absences'][$AM->getIdAbsenceMotif()]['total'])) {
165
										$aso_stat['absences'][$AM->getIdAbsenceMotif()]['total'] = 0;
166
									} else {
167
										$aso_stat['absences'][$AM->getIdAbsenceMotif()]['total'] += $A->getDuree();
168
									}
169
									$aso_stat['total_absences'] += $A->getDuree();
170
									$aso_gestion['ab'][$AM->getIdAbsenceMotif()] = $A->getDuree();
171
									$aso_gestion['total_a'] += $A->getDuree();
172
									$aso_gestion['total'] += $A->getDuree();
173
								}
174
							}
175
						}
176
					}
67 jpm 177
				}
116 jpm 178
				$aso_stat['total_absences_projets'] += $aso_gestion['total'];
179
				$aso_stat['utilisateurs'][] = $aso_gestion;
180
	    	}
67 jpm 181
    	}
116 jpm 182
 
67 jpm 183
		//trigger_error('<pre>'.print_r($aso_stat, true).'</pre>', E_USER_NOTICE);
184
		$this->getRegistre()->ajouterDonnee('stat_tableau_global', $aso_stat);
185
    }
186
}
187
?>