Subversion Repositories Applications.gtt

Rev

Rev 110 | Rev 122 | 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
    	$Registre->ajouterSquelette('stat_tableau_charge', 'stat_tableau_charge.tpl.html');
8
    }
9
 
10
    public function executer()
11
    {
110 jpm 12
   		//+-------------------------------------------------------------------------------------------------+
13
		// GESTION D'INFO GLOBALES
14
		//+-------------------------------------------------------------------------------------------------+
15
   		$aso_stat = array('total_w' => 0,'total_a' => 0, 'total' => 0);
90 jpm 16
    	$this->getRegistre()->setTitre('Plan de charge');
17
 
18
    	//+-------------------------------------------------------------------------------------------------+
103 jpm 19
		// GESTION DES PARAMÊTRE de l'URL
90 jpm 20
		//+-------------------------------------------------------------------------------------------------+
21
		// Initialisation des variables
22
		if (!isset($_GET['annee'])) {
23
			$_GET['annee'] = date('Y');
24
		}
25
		if (!isset($_GET['mois'])) {
26
			$_GET['mois'] = date('m');
27
		}
103 jpm 28
		if (!isset($_GET['uid'])) {// ID de l'utilisateur à afficher
90 jpm 29
			$_GET['uid'] = null;
30
		}
31
		//+-------------------------------------------------------------------------------------------------+
32
		// GESTION DES UTILISATEURS
33
		//+-------------------------------------------------------------------------------------------------+
34
		$DaoUtilsateur = new Utilisateur();
116 jpm 35
    	$utilisateurs = $DaoUtilsateur->consulter(Utilisateur::GU_TOUS);
90 jpm 36
    	$UtilisateurCourant = null;
37
    	foreach ($utilisateurs as $Utilisateur) {
103 jpm 38
	    	// Récupération des infos sur l'utilisateur
90 jpm 39
	 		$aso_stat['utilisateurs'][$Utilisateur->getIdUtilisateur()]['courant'] = false;
40
	 		$aso_stat['utilisateurs'][$Utilisateur->getIdUtilisateur()]['nom'] = $Utilisateur->getPrenom().' '.$Utilisateur->getNom();
41
	 		if (	(!is_null($_GET['uid']) && $Utilisateur->getIdUtilisateur() == $_GET['uid'])
42
	 			||	(is_null($_GET['uid']) && $Utilisateur->getIdUtilisateur() == $GLOBALS['_GTT_']['Utilisateur']->getIdUtilisateur()) ) {
43
	 			$UtilisateurCourant = clone $Utilisateur;
44
	 			$aso_stat['utilisateurs'][$Utilisateur->getIdUtilisateur()]['courant'] = true;
45
	 			$aso_stat['utilisateur_courant'] = $Utilisateur->getPrenom().' '.$Utilisateur->getNom();
46
	 			$_GET['uid'] = $Utilisateur->getIdUtilisateur();
47
	 		}
48
    	}
49
    	$aso_stat['etre_admin'] = $GLOBALS['_GTT_']['Utilisateur']->getMarkAdmin();
50
		$Utilisateur = $UtilisateurCourant;
51
 
52
		//+-------------------------------------------------------------------------------------------------+
53
		// GESTION DES CALENDRIERS
54
		//+-------------------------------------------------------------------------------------------------+
55
 
56
		// Construction du Calendrier
57
		$Calendrier = new Calendrier();
58
		$tab_jours_feries = $Calendrier->getListeFeries();
59
 
60
		// Construction de l'objet mois
61
		$Month = new Calendar_Month_Weeks($_GET['annee'], $_GET['mois']);
62
		$Month->build();
63
 
103 jpm 64
		// Récupération des jours du mois
90 jpm 65
		while ($Week = $Month->fetch()) {
66
			$Week->build();
67
			//echo '<pre>'.print_r($Month, true).'</pre>';
68
			$tab_semaine_jours = $Week->fetchAll();
69
			foreach ($tab_semaine_jours as $num => $Day) {
70
				// Nous prenons en compte uniquement les jours du mois courant
71
				if ($Day->thisMonth() == $_GET['mois']) {
110 jpm 72
					$element = array('travail' => 0, 'absence' => 0, 'w_et_a' => 0);
90 jpm 73
					$element['jour'] = $Day->thisDay();
74
					$element['jour_nom'] = $Calendrier->getNomJours($num);
75
					$element['class'] = 'jour';
103 jpm 76
					// Nous vérifions le type de jour
90 jpm 77
					// Jour courrant
78
					if ($Day->isSelected()) {
79
						$element['class'] .= ' jour_courrant';
80
					}
81
					// Jour n'appartenant pas au moins courrant
82
					if ($Day->isEmpty()) {
83
						$element['class'] .= ' jour_vide';
84
					}
103 jpm 85
					// Jour férié
90 jpm 86
					foreach ($tab_jours_feries as $jour_ferie) {
87
						if ($Day->thisDay(true) ==  $jour_ferie) {
88
							$element['class'] .= ' jour_ferie';
89
						}
90
					}
91
					// Jour de week-end
92
					if ($element['jour_nom'] == GESTION_DIM_L || $element['jour_nom'] == GESTION_SAM_L) {
93
						$element['class'] .= ' jour_we';
94
					}
95
					$id = date('Y-m-d', mktime(0, 0, 0, $Day->thisMonth(), $Day->thisDay(), $Day->thisYear()));
96
					$aso_stat['elements'][$id] = $element;
97
				}
98
			}
99
		}
100
 
103 jpm 101
		// Construction de l'url pour les mois précédent/suivant/courant et paramêtres pour le formulaire utilisateur
90 jpm 102
		$aso_stat['form_url'] = 'index.php';
103
		$aso_stat['form_param']['action'] = GTT_ACTION_STAT_TAB_CHARGE;
104
		$aso_stat['form_param']['annee'] = $Month->thisYear();
105
		$aso_stat['form_param']['mois'] = $Month->thisMonth();
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
 
110 jpm 241
		//trigger_error('<pre>'.print_r($aso_stat, true).'</pre>', E_USER_NOTICE);
90 jpm 242
		$this->getRegistre()->ajouterDonnee('stat_tableau_charge', $aso_stat);
243
    }
244
}
245
?>