Subversion Repositories Applications.gtt

Rev

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

Rev Author Line No. Line
90 jpm 1
<?php
2
class GttCtrlActionStatTableauCharge extends aControlleurAction {
3
 
4
	public function __construct(Registre $Registre)
5
    {
6
    	$Registre->ajouterEspace('StatTableauCharge', 'stat_tableau_charge');
7
    }
8
 
9
    public function executer()
10
    {
110 jpm 11
   		//+-------------------------------------------------------------------------------------------------+
12
		// GESTION D'INFO GLOBALES
13
		//+-------------------------------------------------------------------------------------------------+
14
   		$aso_stat = array('total_w' => 0,'total_a' => 0, 'total' => 0);
90 jpm 15
    	$this->getRegistre()->setTitre('Plan de charge');
16
 
17
    	//+-------------------------------------------------------------------------------------------------+
103 jpm 18
		// GESTION DES PARAMÊTRE de l'URL
90 jpm 19
		//+-------------------------------------------------------------------------------------------------+
20
		// Initialisation des variables
21
		if (!isset($_GET['annee'])) {
22
			$_GET['annee'] = date('Y');
23
		}
24
		if (!isset($_GET['mois'])) {
25
			$_GET['mois'] = date('m');
26
		}
103 jpm 27
		if (!isset($_GET['uid'])) {// ID de l'utilisateur à afficher
90 jpm 28
			$_GET['uid'] = null;
29
		}
30
		//+-------------------------------------------------------------------------------------------------+
31
		// GESTION DES UTILISATEURS
32
		//+-------------------------------------------------------------------------------------------------+
33
		$DaoUtilsateur = new Utilisateur();
116 jpm 34
    	$utilisateurs = $DaoUtilsateur->consulter(Utilisateur::GU_TOUS);
90 jpm 35
    	$UtilisateurCourant = null;
36
    	foreach ($utilisateurs as $Utilisateur) {
103 jpm 37
	    	// Récupération des infos sur l'utilisateur
90 jpm 38
	 		$aso_stat['utilisateurs'][$Utilisateur->getIdUtilisateur()]['courant'] = false;
39
	 		$aso_stat['utilisateurs'][$Utilisateur->getIdUtilisateur()]['nom'] = $Utilisateur->getPrenom().' '.$Utilisateur->getNom();
40
	 		if (	(!is_null($_GET['uid']) && $Utilisateur->getIdUtilisateur() == $_GET['uid'])
41
	 			||	(is_null($_GET['uid']) && $Utilisateur->getIdUtilisateur() == $GLOBALS['_GTT_']['Utilisateur']->getIdUtilisateur()) ) {
42
	 			$UtilisateurCourant = clone $Utilisateur;
43
	 			$aso_stat['utilisateurs'][$Utilisateur->getIdUtilisateur()]['courant'] = true;
44
	 			$aso_stat['utilisateur_courant'] = $Utilisateur->getPrenom().' '.$Utilisateur->getNom();
45
	 			$_GET['uid'] = $Utilisateur->getIdUtilisateur();
46
	 		}
47
    	}
48
    	$aso_stat['etre_admin'] = $GLOBALS['_GTT_']['Utilisateur']->getMarkAdmin();
49
		$Utilisateur = $UtilisateurCourant;
50
 
51
		//+-------------------------------------------------------------------------------------------------+
52
		// GESTION DES CALENDRIERS
53
		//+-------------------------------------------------------------------------------------------------+
54
 
55
		// Construction du Calendrier
56
		$Calendrier = new Calendrier();
57
		$tab_jours_feries = $Calendrier->getListeFeries();
58
 
59
		// Construction de l'objet mois
60
		$Month = new Calendar_Month_Weeks($_GET['annee'], $_GET['mois']);
61
		$Month->build();
62
 
103 jpm 63
		// Récupération des jours du mois
90 jpm 64
		while ($Week = $Month->fetch()) {
65
			$Week->build();
66
			//echo '<pre>'.print_r($Month, true).'</pre>';
67
			$tab_semaine_jours = $Week->fetchAll();
68
			foreach ($tab_semaine_jours as $num => $Day) {
69
				// Nous prenons en compte uniquement les jours du mois courant
70
				if ($Day->thisMonth() == $_GET['mois']) {
110 jpm 71
					$element = array('travail' => 0, 'absence' => 0, 'w_et_a' => 0);
90 jpm 72
					$element['jour'] = $Day->thisDay();
73
					$element['jour_nom'] = $Calendrier->getNomJours($num);
74
					$element['class'] = 'jour';
103 jpm 75
					// Nous vérifions le type de jour
90 jpm 76
					// Jour courrant
77
					if ($Day->isSelected()) {
78
						$element['class'] .= ' jour_courrant';
79
					}
80
					// Jour n'appartenant pas au moins courrant
81
					if ($Day->isEmpty()) {
82
						$element['class'] .= ' jour_vide';
83
					}
103 jpm 84
					// Jour férié
90 jpm 85
					foreach ($tab_jours_feries as $jour_ferie) {
86
						if ($Day->thisDay(true) ==  $jour_ferie) {
87
							$element['class'] .= ' jour_ferie';
88
						}
89
					}
90
					// Jour de week-end
91
					if ($element['jour_nom'] == GESTION_DIM_L || $element['jour_nom'] == GESTION_SAM_L) {
92
						$element['class'] .= ' jour_we';
93
					}
94
					$id = date('Y-m-d', mktime(0, 0, 0, $Day->thisMonth(), $Day->thisDay(), $Day->thisYear()));
95
					$aso_stat['elements'][$id] = $element;
96
				}
97
			}
98
		}
99
 
103 jpm 100
		// Construction de l'url pour les mois précédent/suivant/courant et paramêtres pour le formulaire utilisateur
90 jpm 101
		$aso_stat['form_url'] = 'index.php';
102
		$aso_stat['form_param']['action'] = GTT_ACTION_STAT_TAB_CHARGE;
103
		$aso_stat['form_param']['annee'] = $Month->thisYear();
104
		$aso_stat['form_param']['mois'] = $Month->thisMonth();
126 jpm 105
		$aso_stat['url_mois_courant'] = 'index.php?action='.GTT_ACTION_STAT_TAB_CHARGE.'&amp;annee='.$Month->thisYear().'&amp;mois='.$Month->thisMonth().'&amp;uid='.$_GET['uid'];
90 jpm 106
		$PMonth = $Month->prevMonth('object');
107
		$aso_stat['url_mois_precedent'] = 'index.php?action='.GTT_ACTION_STAT_TAB_CHARGE.'&amp;annee='.$PMonth->thisYear().'&amp;mois='.$PMonth->thisMonth().'&amp;uid='.$_GET['uid'];
108
		$NMonth = $Month->nextMonth('object');
109
		$aso_stat['url_mois_suivant'] = 'index.php?action='.GTT_ACTION_STAT_TAB_CHARGE.'&amp;annee='.$NMonth->thisYear().'&amp;mois='.$NMonth->thisMonth().'&amp;uid='.$_GET['uid'];
110
		$aso_stat['mois']['mois'] = $Calendrier->getNomMois($Month->thisMonth());
111
		$aso_stat['mois']['annee'] = $Month->thisYear();
112
		$mois_courant_j1 = $Month->thisYear().'-'.sprintf("%02s", $Month->thisMonth()).'-'.sprintf("%02s", $Month->thisDay()).' 00:00:00';
113
		$mois_courant_j36 = date('Y-m-d H:i:s', mktime(0, 0, 0, $NMonth->thisMonth(), 0, $NMonth->thisYear()));
114
 
115
		//+-------------------------------------------------------------------------------------------------+
116
		// GESTION DES PROJETS
117
		//+-------------------------------------------------------------------------------------------------+
103 jpm 118
    	// Récupération du temps de travail pour un utilisateur pour le mois donné
90 jpm 119
    	$TravailProjet = new TravailProjet();
120
		$cmd = TravailProjet::GTP_ID_UTILISATEUR_DATE_DEB_FIN;
121
		$param = array($Utilisateur->getIdUtilisateur(), $mois_courant_j1, $mois_courant_j36);
122
		$tab_tp = $TravailProjet->consulter($cmd, $param);
123
 
124
		if ($tab_tp != false) {
125
			$tab_projet_id = array();
126
			foreach ($tab_tp as $utp) {
127
    			$tab_projet_id[] = $utp->getIdProjet();
128
    		}
103 jpm 129
			// Nous vérifions qu'il y a des données pour l'utilisateur courant pour le mois donné
130
			// Récupération des infos sur les projets de l'utilisateur
90 jpm 131
	    	$Projet = new Projet();
132
	    	$tab_p = $Projet->consulter(Projet::GP_ID_LIST, array(implode(',', $tab_projet_id)));
133
			foreach ($tab_p as $Projet) {
103 jpm 134
				// Récupération de la catégorie du projet
90 jpm 135
				$ProjetCategorie = new ProjetCategorie();
136
				$cmd = ProjetCategorie::GPC_ID;
137
				$param = $Projet->getCeCategorie();
101 jpm 138
				$Categorie = current($ProjetCategorie->consulter($cmd, $param));
90 jpm 139
 
103 jpm 140
				// Nous vérifions le temps de travail pour ce projet
90 jpm 141
				$aso_tps_w = 0;
142
				if ($tab_tp) {
143
					foreach ($tab_tp as $TP) {
144
						$j = date('Y-m-d', strtotime($TP->getIdDateTravail()));
145
						if ($TP->getIdProjet() == $Projet->getIdProjet()) {
103 jpm 146
							// Récupération des infos sur les catégories
110 jpm 147
							if (!isset($aso_stat['categories'][$Categorie->getLibelle()][$j])) {
148
								$aso_stat['categories'][$Categorie->getLibelle()][$j] = 0;
90 jpm 149
							}
110 jpm 150
							$aso_stat['categories'][$Categorie->getLibelle()][$j] += $TP->getDuree();
151
							if (!isset($aso_stat['categories'][$Categorie->getLibelle()]['total'])) {
152
								$aso_stat['categories'][$Categorie->getLibelle()]['total'] = 0;
153
							}
154
							$aso_stat['categories'][$Categorie->getLibelle()]['total'] += $TP->getDuree();
155
 
156
							// Récupération du total de travail
157
							$aso_stat['total_w'] += $TP->getDuree();
158
 
159
							// Récupération du total de temps global (travail+absence)
160
							$aso_stat['total'] += $TP->getDuree();
161
 
162
							// Récupération d'info sur le temps travaillé
163
							$aso_stat['elements'][$j]['travail'] += $TP->getDuree();
164
 
165
							// Récupération du total travail + absence par jour
166
							$aso_stat['elements'][$j]['w_et_a'] += $TP->getDuree();
167
 
103 jpm 168
							// Récupération des infos sur les projets
90 jpm 169
							if (!isset($aso_stat['projets'][$Categorie->getLibelle()][$Projet->getIdProjet()])) {
170
								$aso_stat['projets'][$Categorie->getLibelle()][$Projet->getIdProjet()] = array(
171
									'id' => $Projet->getIdProjet(),
172
									'nom' => $Projet->getNom(),
110 jpm 173
									'desc' => $Projet->getDescription(),
174
									'duree' => array(),
175
									'total' => 0);
90 jpm 176
							}
177
							$aso_stat['projets'][$Categorie->getLibelle()][$Projet->getIdProjet()]['duree'][$j] = $TP->getDuree();
110 jpm 178
							$aso_stat['projets'][$Categorie->getLibelle()][$Projet->getIdProjet()]['total'] += $TP->getDuree();
90 jpm 179
						}
180
					}
181
				}
182
			}
183
		} else {
184
			$aso_stat['messages'][] = 'Aucune information sur le travail en '.$aso_stat['mois']['mois'].' '.$aso_stat['mois']['annee'];
185
		}
186
 
187
		//+-------------------------------------------------------------------------------------------------+
188
		// GESTION DES ABSENCES
189
		//+-------------------------------------------------------------------------------------------------+
103 jpm 190
		// Récupération des motifs d'absence
90 jpm 191
		$AbsenceMotif = new AbsenceMotif();
192
		$cmd = AbsenceMotif::GAM_TOUS;
193
		$tab_am = $AbsenceMotif->consulter($cmd);
194
 
103 jpm 195
		// Récupération des absences pour un utilisateur à une date donnée
90 jpm 196
    	$Absence = new Absence();
197
		$cmd = Absence::GA_ID_UTILISATEUR_DATE_DEB_FIN;
198
		$param = array($Utilisateur->getIdUtilisateur(), $mois_courant_j1, $mois_courant_j36);
199
		$tab_a = $Absence->consulter($cmd, $param);
200
		if ($tab_a != false) {
201
			$aso_stat['ab_total'] = '';
202
			if ($tab_am) {
203
				foreach ($tab_am as $AM) {
110 jpm 204
					// Initialisation du tableau des types d'absences
205
					$aso_stat['absences'][$AM->getIdAbsenceMotif()]['nom'] = $AM->getLibelle();
206
					if (!isset($aso_stat['absences'][$AM->getIdAbsenceMotif()]['total'])) {
207
						$aso_stat['absences'][$AM->getIdAbsenceMotif()]['total'] = 0;
208
					}
209
 
90 jpm 210
					if ($tab_a) {
211
						foreach ($tab_a as $A) {
212
							if ($A->getIdAbsenceMotif() == $AM->getIdAbsenceMotif() && $A->getDuree() != 0) {
213
								$j = date('Y-m-d', strtotime($A->getIdDateAbsence()));
110 jpm 214
 
103 jpm 215
								// Récupération des infos sur les absences
90 jpm 216
								$aso_stat['ab'][$AM->getIdAbsenceMotif()][$j] = $A->getDuree();
110 jpm 217
 
218
								// Récupération du total des absences par jour
219
								$aso_stat['elements'][$j]['absence'] += $A->getDuree();
220
 
221
								// Récupération du total travail + absence par jour
222
								$aso_stat['elements'][$j]['w_et_a'] += $A->getDuree();
223
 
224
								// Récupération du total pour chaque type d'absence
225
								$aso_stat['absences'][$AM->getIdAbsenceMotif()]['total'] += $A->getDuree();
226
 
103 jpm 227
								// Récupération du total des absences
110 jpm 228
								$aso_stat['total_a'] += $A->getDuree();
229
 
230
								// Récupération du total de temps global (travail+absence)
231
								$aso_stat['total'] += $A->getDuree();
90 jpm 232
							}
233
						}
234
					}
235
				}
236
			}
237
		} else {
103 jpm 238
			$aso_stat['messages'][] = 'Aucune absence de mentionnée en '.$aso_stat['mois']['mois'].' '.$aso_stat['mois']['annee'];
90 jpm 239
		}
240
 
138 jpm 241
		// Post-traitement des nombre pour l'affichage
242
    	$aso_stat = Nombre::formaterNbre($aso_stat, GTT_LANGUE);
243
 
244
		// Sortie
245
		//trigger_error(print_r($aso_stat, true), E_USER_NOTICE);
90 jpm 246
		$this->getRegistre()->ajouterDonnee('stat_tableau_charge', $aso_stat);
247
    }
248
}
249
?>