materiels_list.ctp
15.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
<?php
use Cake\I18n\Time;
use Cake\I18n\Date;
use Cake\I18n\FrozenDate;
// - Variables passées à l'appel de cet élément : $this->element('materiels_list', [...]);
$SELECTED_STATUS = $SELECTED_STATUS;
$METRO = $METRO;
// - Autres variables passées directement par la vue utilisatrice
// En fait, TOUTES les variables créées par la vue sont disponibles ici,
// mais on ne précise ici que les variables UTILISÉES par cet "element"
// Pas bien mais pratique
$controller = $controller;
//$HEADERS = $HEADERS;
//$HAS_COL_METRO = $HAS_COL_METRO;
// Seulement pour la partie données
$materiels = $materiels;
//debug($materiels);
//$today = $today;
//$materiel = $materiel;
//$color = $color;
//$date_color = $date_color;
// - Fonction utilisée seulement pour la 2ème partie (affichage d'une ligne de données)
$displayActionButtonsForMateriel = function($materiel, $statuses_color, $username, $USER_IS_RESPONSABLE, $USER_IS_ADMIN_OR_MORE, $USER_IS_SUPERADMIN, $controller, $html) {
// TODO: Dans l'idéal, ces variables doivent etre définies par le controleur et passées à la vue
// (sous forme d'un tableau contenant ces droits pour CHAQUE materiel)
// Car la vue doit être la moins "intelligente" possible, la plus simple possible
$IS_CREATED = ($materiel->status == 'CREATED');
$IS_VALIDATED = ($materiel->status == 'VALIDATED');
$IS_TOBEARCHIVED = ($materiel->status == 'TOBEARCHIVED');
$IS_ARCHIVED = ($materiel->status == 'ARCHIVED');
/*
* Couleurs en fonction du statut du matos
*
// CREATED => bleu
if ($IS_CREATED) $color = 'blue';
// VALIDATED => noir
if ($IS_VALIDATED) $color = 'black';
//if ($IS_VALIDATED) $color = 'green';
// TBA => orange
if ($IS_TOBEARCHIVED) $color = 'orange';
// ARCHIVED => rouge
if ($IS_ARCHIVED) $color = 'red';
*/
$color = $statuses_color[$materiel->status];
$color = "style='color: $color'";
$USER_IS_CREATOR_OR_OWNER = in_array($username, [$materiel->nom_createur, $materiel->nom_responsable]);
$USER_IS_SAME_GROUP_AS_MATERIEL = (
( isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id!=$idGmNa && $materiel->groupes_metier_id==$priviledgedUser->groupes_metier_id )
||
( isset($priviledgedUser->groupes_thematique_id) && $priviledgedUser->groupes_thematique_id!=$idGtNa && $materiel->groupes_thematique_id==$priviledgedUser->groupes_thematique_id )
);
$USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL = $USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL;
$CONTEXT1 = $USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL;
// Détermination des autorisations pour tous les boutons "éditer", "supprimer", "valider", ...
$id = $materiel->id;
$CAN_EDIT = $controller->isAuthorizedAction('edit', $id);
//$CAN_EDIT = $IS_CREATED && ($USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL);
//$CAN_EDIT = $IS_CREATED && ($USER_IS_ADMIN_OR_MORE || $USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL || $USER_IS_RESPONSABLE_AND_CREATOR_OR_OWNER);
$CAN_DELETE = $controller->isAuthorizedAction('delete', $id);
//$CAN_DELETE = $CAN_EDIT;
/*
$CAN_VALIDATE_OR_INVALIDATE = $USER_IS_ADMIN_OR_MORE || ( ($materiel->materiel_administratif == 0) && $USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL );
$CAN_VALIDATE = $IS_CREATED && $CAN_VALIDATE_OR_INVALIDATE;
$CAN_INVALIDATE = !$IS_CREATED && $CAN_VALIDATE_OR_INVALIDATE;
$CAN_TBA = $IS_VALIDATED && ($USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || ($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL));
$CAN_ARCHIVE = $IS_TOBEARCHIVED && $CAN_VALIDATE_OR_INVALIDATE;
*/
$CAN_INVALIDATE = $controller->isAuthorizedAction('statusCreated', $id);
$CAN_VALIDATE = $controller->isAuthorizedAction('statusValidated', $id);
$CAN_TBA = $controller->isAuthorizedAction('statusTobearchived', $id);
$CAN_ARCHIVE = $controller->isAuthorizedAction('statusArchived', $id);
echo '<td class="actions" style="padding: 6px 0; text-align: left;">';
// 1) EDIT icon
/*
if (
in_array($materiel->status, [
'CREATED',
// (EP 17/5/19) ben non, on peut pas si c'est validé !!!
//'VALIDATED'
])
&&
(
$USER_IS_ADMIN_OR_MORE
||
$USER_IS_CREATOR_OR_OWNER
||
($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL)
)
)
*/
if ($CAN_EDIT) echo $html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $materiel->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]);
// 2) VALIDER/TBA/ARCHIVER icon
/*
if (
$USER_IS_ADMIN
||
($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL)
) {
*/
//if ($materiel->status=='CREATED' && !$USER_IS_RESPONSABLE) {
if ($CAN_VALIDATE)
echo $html->link('<i class="icon-ok-sign"></i>', [
'action' => 'statusValidated',
$materiel->id
],
[
'title' => 'Valider',
'style' => 'margin: 0 2px',
'escape' => false,
'confirm' => 'Êtes-vous sur de vouloir valider ' . $materiel->designation . ' ?'
]
);
//else if (h($materiel->status) == 'VALIDATED') {
if ($CAN_TBA)
echo $html->link('<i class="icon-inbox"></i>', [
'action' => 'statusTobearchived',
$materiel->id
],
[
'title' => 'Demander la sortie de l\'inventaire',
'style' => 'margin: 0 2px',
'escape' => false,
'confirm' => "Êtes-vous sûr de vouloir demander l'archivage de " . $materiel->designation . ' ?'
]
);
//else if ($materiel->status=='TOBEARCHIVED' && !$USER_IS_RESPONSABLE)
if ($CAN_ARCHIVE)
echo $html->link('<i class="icon-inbox"></i>', [
'action' => 'statusArchived',
$materiel->id
],
[
'title' => 'Sortir de l\'inventaire',
'style' => 'margin: 0 2px',
'escape' => false,
'confirm' => 'Êtes-vous sur de vouloir archiver ' . $materiel->designation . ' ?'
]
);
// 3) DELETE icon
/*
if (h($materiel->status) == 'CREATED') {
if (
$USER_IS_ADMIN_OR_MORE
||
$USER_IS_CREATOR_OR_OWNER
||
($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL)
)
*/
if ($CAN_DELETE)
echo $html->link(__('<i class="icon-trash"></i>'), [
'action' => 'delete',
$materiel->id
],
[
'title' => 'Supprimer',
'style' => 'margin: 0 2px',
'escape' => false,
'confirm' => __('Êtes-vous sur de vouloir supprimer {0} ?', $materiel->designation)
]
);
echo "</td>";
return $color;
}; // displayActionButtonsForMateriel
?>
<!--
************************************************
************************************************
PAGE HTML
************************************************
************************************************
-->
<table style="border-collapse: separate; border-spacing: 0;">
<!--
1) LES TITRES DE COLONNES (HEADERS)
-->
<thead>
<tr>
<?php if ($SELECTED_STATUS) { echo '<th></th>'; }?>
<th class="actions"><?= __('') ?></th>
<th><?= $this->Paginator->sort('designation','Désignation') ?></th>
<th><?= $this->Paginator->sort('numero_laboratoire', 'N° inv.') ?></th>
<!--
<th><= $this->Paginator->sort('numero_inventaire_organisme', 'N° inv. compt.') ?></th>
-->
<th><?= $this->Paginator->sort('numero_inventaire_organisme', 'N° tut.') ?></th>
<th><?= $this->paginator->sort('hors_service', ' ') ?></th>
<th><?= $this->Paginator->sort('numero_commande', 'BC') ?></th>
<!--
<th><= $this->Paginator->sort('nom_responsable', "Nom de l'utilisateur") ?></th>
-->
<th><?= $this->Paginator->sort('nom_user', "Utilisateur") ?></th>
<!--
<th><= $this->Paginator->sort('Gestionnaires.nom', 'Gestionnaire') ?></th>
-->
<th><?= $this->Paginator->sort('Users.nom', 'Gestionnaire') ?></th>
<!--
<th><= $this->Paginator->sort('categorie_id', 'Catégorie') ?></th>
-->
<th><?= $this->Paginator->sort('Categories.nom', 'Catégorie') ?></th>
<th><?= $this->Paginator->sort('status', 'Statut') ?></th>
<th><?= $this->Paginator->sort('date_acquisition', 'Date Achat') ?></th>
<th><?= $this->Paginator->sort('prix_ht', 'Prix') ?></th>
<th><?= $this->Paginator->sort('Fournisseurs.nom', 'Fournisseur') ?></th>
<!--
<th><= $this->Paginator->sort('lieu_detail', 'Lieu') ?></th>
-->
<th><?= $this->Paginator->sort('Sites.nom', 'Lieu') ?></th>
<!--
<th><= $this->Paginator->sort('Organismes.nom', 'Org.') ?></th>
<th><= $this->Paginator->sort('etiquette', 'Et') ?></th>
-->
<?php
//if ($HAS_COL_METRO && $METRO) echo "<th>".$this->Paginator->sort('metrologie', 'Metro')."</th>"
if ($METRO) echo "<th>".$this->Paginator->sort('metrologie', 'Metro')."</th>"
?>
</tr>
</thead>
<!--
2) LIGNES DE DONNÉES
-->
<tbody>
<?php
// Pour changer la couleur du nom du matos si la garantie est passée
$today = new FrozenDate();
$next_year_same_day = new FrozenDate('+1 year');
//debug("today $today");
//debug($next_year_same_day);
/*
$time = Time::now(); // On récupère la date et l'heure actuelles
$today = new date("$time->year-$time->month-$time->day"); // On extrait la date pour la vérification de fin de garantie
//$today = $today->format('Ydm'); // On formatte la date initialement en 31-12-2000 (par exemple) en un format qui pourra etre comparé : 20001231
$today = $today->format('Ymd'); // On formatte la date initialement en 31-12-2000 (par exemple) en un format qui pourra etre comparé : 20001231
*/
// BOUCLE SUR CHAQUE MATERIEL, ligne par ligne
//$mc = new MaterielsController();
foreach ($materiels as $materiel) :
?>
<tr>
<?php
// Date fin garantie ?
$date_color = '';
$date_fin_gar = $materiel->date_fin_garantie;
if ($date_fin_gar !== NULL) {
// expirée ?
//if ($date_fin_gar <= $today) $date_color = 'style="color: #FF0000"';
if ($date_fin_gar <= $today) $date_color = 'style="color: red"';
// dans moins d'1 an ?
elseif ($date_fin_gar <= $next_year_same_day) $date_color = 'style="color: orange"';
/*
$timeFin = new time($materiel->date_fin_garantie);
$date_fin_gar = new date("$timeFin->year-$timeFin->month-$timeFin->day");
//$dateFin = $dateFin->format('Ydm');
$date_fin_gar = $dateFin->format('Ymd');
debug("datefin $date_fin_gar");
*/
//debug("couleur $date_color");
}
//<tr style="color:<?=$color>;">
// (1) COLONNE SELECTION (checkbox)
if ($SELECTED_STATUS) {
echo '<td class="smallText">' . $this->Form->checkbox($materiel->id, [
'style' => 'margin: 3px',
'id' => $materiel->id
]) . '</td>';
}
// <!-- (2) COLONNE ACTIONS (Edit, Delete, Validate, TBA, Archive) -->
$color = $displayActionButtonsForMateriel($materiel, $statuses_color, $username, $USER_IS_RESPONSABLE, $USER_IS_ADMIN_OR_MORE, $USER_IS_SUPERADMIN, $controller, $this->Html);
?>
<td class="smallText"><?= $materiel->has('designation') ?
$this->Html->link(
$materiel->designation,
['controller' => 'Materiels', 'action' => 'view', $materiel->id],[$color]
)
: '' ?>
</td>
<td class="smallText"><?= h($materiel->numero_laboratoire) ?></td>
<td class="smallText"><?= h($materiel->numero_inventaire_organisme) ?></td>
<td class="smallText" style="color: red"><strong><?= ($materiel->hors_service) ? 'HS' : '' ?></strong></td>
<td class="smallText"><?= h($materiel->numero_commande) ?></td>
<!--
<td class="smallText"><= h($materiel->nom_responsable) ?></td>
-->
<td class="smallText"><?= h($materiel->nom_user) ?></td>
<!--
<td class="smallText"><= $materiel->has('gestionnaire') ? h($materiel->gestionnaire->nom) : '' ?></td>
-->
<td class="smallText"><?= $materiel->has('user') ? h($materiel->user->nom) : '' ?></td>
<td class="smallText"><?= $materiel->has('category') ? h($materiel->category->nom) : '' ?></td>
<?php
// (4) COLONNE MATERIEL STATUS : C/V/TBA/A
$statut = $materiel->getNiceStatus();
/*
switch (h($materiel->status)) {
case 'CREATED':
//$statut = 'C';
$statut = 'A Valider';
break;
case 'VALIDATED':
//$statut = 'V';
$statut = 'Validé';
break;
case 'TOBEARCHIVED':
//$statut = 'T';
$statut = 'A sortir';
break;
case 'ARCHIVED':
//$statut = 'A';
$statut = 'Archivé';
break;
default:
$statut = '';
break;
}
*/
?>
<td class="smallText" <?=$color?>><?=$statut?></td>
<td class="smallText" <?=$date_color?>><?= h($materiel->date_acquisition) ?></td>
<td class="smallText"><?= h($materiel->prix_ht.'€') ?></td>
<td class="smallText"><?= $materiel->has('fournisseur') ? h($materiel->fournisseur->nom) : '' ?></td>
<?php
$site_lieu = '';
if ($materiel->has('site')) {
$site_lieu = h($materiel->site->nom);
if ($materiel->lieu_detail) $site_lieu .= ' - '.h($materiel->lieu_detail);
if ($materiel->is_site_only) $site_lieu .= ' (réservé au site)';
}
?>
<td class="smallText"><?=$site_lieu?></td>
<!--
<td class="smallText"><= $materiel->has('organisme') ? h($materiel->organisme->nom) : '' ?></td>
<td class="smallText"><= h($materiel->etiquette)=='1' ? 'O':'N' ?></td>
-->
<!--
// (6) COLONNE METRO o/n
-->
<?php if ($METRO)
echo '<td class="smallText">'. (h($materiel->metrologie)=='1' ? 'Y':'N').'</td>';
?>
</tr>
<?php
//}
endforeach;
?>
</tbody>
</table>