Subversion Repositories Applications.gtt

Rev

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

Rev Author Line No. Line
95 jpm 1
<?php if (isset($messages)) : ?>
177 mathias 2
	<?php foreach ($messages as $message) : ?>
3
		<p class="information"><?=$message;?></p>
4
	<?php endforeach; ?>
95 jpm 5
<?php endif; ?>
6
<?php if ($preferences) : ?>
109 jpm 7
<div id="preferences">
8
	<form class="centre" id="gestion_admin_pref" action="index.php?action=<?=GTT_ACTION_PREFERENCE_VALIDER;?>" name="gestion_admin_pref" method="post">
9
		<input name="champ_nb_total_proj" value="<?=$nbre_projets;?>" type="hidden"/>
10
		<table id="preference">
11
			<thead>
12
				<tr>
13
					<th>&nbsp;</th>
14
					<th>Nom</th>
15
					<th>Description</th>
16
					<th>Date début</th>
17
					<th>Date fin</th>
177 mathias 18
					<th>Durée prévue (j)</th>
19
					<th>Durée financée (j)</th>
20
					<th>Avancement (j)</th>
109 jpm 21
					<th>Avancement (%)</th>
22
				</tr>
23
			</thead>
24
			<tbody>
167 mathias 25
			<?php foreach ($preferences as $categorie => $projets):?>
177 mathias 26
				<tr class="categories"><th colspan="9"><?=$categorie;?></th></tr>
109 jpm 27
				<?php $ligne = "impair"; ?>
167 mathias 28
				<?php foreach ($projets as $projet):?>
109 jpm 29
				<tr class="<?=$ligne ; $ligne = ($ligne == "impair") ? "pair" : "impair" ;?>">
30
					<td class="check"><input id="pr:<?=$projet['id'];?>" name="pr:<?=$projet['id'];?>" value="<?=$projet['valeur'];?>" type="checkbox" <?=$projet['coche']?'checked="checked"':'';?>/></td>
31
					<td class="pr_no"><?=$projet['no'];?></td>
32
					<td class="pr_de"><?=$projet['de'];?></td>
33
					<td class="pr_dade"><?=($projet['dade'] != '0000-00-00') ? $projet['dade'] : '&nbsp;' ;?></td>
34
					<td class="pr_dafi"><?=($projet['dafi'] != '0000-00-00') ? $projet['dafi'] : '&nbsp;' ;?></td>
35
					<td class="pr_dupr"><?=(!empty($projet['dupr'])) ? $projet['dupr'] : '&nbsp;' ;?></td>
36
					<td class="pr_dufi"><?=(!empty($projet['dufi'])) ? $projet['dufi'] : '&nbsp;' ;?></td>
177 mathias 37
 
38
					<!-- colonne "avancement en jours" -->
39
					<?php
40
						// calculs utiles pour la suite
41
						$pourcentageEffectue = 0;
42
						$pourcentageEnTrop = 0;
43
						$joursEnTrop = $projet['avc'] - $projet['dupr'];
44
						if ($projet['dupr'] > 0) {
45
							$pourcentageEffectue = round(($projet['avc'] / $projet['dupr']) * 100);
46
							$pourcentageEnTrop = round((($joursEnTrop) / $projet['dupr']) * 100);
47
						}
48
					?>
49
					<?php if ($projet['avc'] > ($projet['dupr'] * 1.15)): ?>
50
						<!-- on dépasse de 15%, alerte ! -->
51
						<td class="pr_av_j bg-alerte" title="<?= $joursEnTrop ?> jours ont été accordés au delà des prévisions">
52
					<?php else: ?>
53
						<td class="pr_av_j">
54
					<?php endif; ?>
55
						<?= $projet['avc'] ?> / <?= $projet['dupr'] ?>
56
					</td>
57
 
58
					<!-- colonne "avancement en %" -->
59
					<td class="pr_av" title="<?= $pourcentageEffectue ?>%">
60
						<div class="barre-avancement-ext">
61
							<div class="barre-avancement-int" style="width:<?= min(100, $pourcentageEffectue) ?>px;">
62
							</div>
63
						</div>
64
					<!--<?php if (!empty($projet['av'])) : ?>
109 jpm 65
							<img 	height="10"
177 mathias 66
									width="<?=min(100, $projet['av']);?>"
67
									title="pipi <?=$projet['av'];?> %"
109 jpm 68
									src="presentation/images/pixels/avancement.png"
177 mathias 69
									style="cursor:help;padding-right:<?=(100 - $projet['av']);?>px;border:1px solid #DDD;"
109 jpm 70
									alt="<?=$projet['av'];?> %" />
71
						<?php else : ?>
72
							<img 	height="10"
73
									width="100"
177 mathias 74
									style="cursor:help;border:1px solid #DDD;"
109 jpm 75
									src="presentation/images/pixels/vide.png"
177 mathias 76
									title="caca <?=$projet['av'];?> %"
109 jpm 77
									alt="0 %" />
177 mathias 78
						<?php endif; ?>-->
109 jpm 79
					</td>
80
				</tr>
81
				<?php endforeach; ?>
82
			<?php endforeach; ?>
83
			</tbody>
84
		</table>
85
		<input class="btn_large" id="btn_valider_editer" name="btn_valider_editer" value="<?=$i18n_general_valider;?>" type="submit" />
86
	</form>
87
</div>
167 mathias 88
<?php endif; ?>