Blame view

src/Template/Element/materiels_list.ctp 15.7 KB
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
1
2
3
<?php
use Cake\I18n\Time;
use Cake\I18n\Date;
7b381e28   Etienne Pallier   date fin garantie...
4
use Cake\I18n\FrozenDate;
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
5

087b29e7   Etienne Pallier   GROSSE REFACTORIS...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// - 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;


d7cdfa86   Etienne Pallier   Grosse (re-)facto...
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
// - 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,
d6da8a54   Etienne Pallier   Nouveau workflow ...
139
                    'confirm' => "Êtes-vous sûr de vouloir demander l'archivage de " . $materiel->designation . ' ?'
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
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
                ]
                );
            //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

087b29e7   Etienne Pallier   GROSSE REFACTORIS...
186
?>
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
187

a938d08e   Etienne Pallier   Bugfix Recherche ...
188
189
190



087b29e7   Etienne Pallier   GROSSE REFACTORIS...
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205






<!--
************************************************  
************************************************  
                    PAGE HTML 
************************************************  
************************************************  
-->


d7cdfa86   Etienne Pallier   Grosse (re-)facto...
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

<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>
		
8c519d1f   Etienne Pallier   Modif champs obli...
245
		<th><?= $this->Paginator->sort('status', 'Statut') ?></th>
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
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
		
		<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
7b381e28   Etienne Pallier   date fin garantie...
280
281
282
283
284
    $today = new FrozenDate();
    $next_year_same_day = new FrozenDate('+1 year');
    //debug("today $today");
    //debug($next_year_same_day);
    /*
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
285
286
287
288
    $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
7b381e28   Etienne Pallier   date fin garantie...
289
    */
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
290
291
292
293
294
295
296
297
298
299
    
    // BOUCLE SUR CHAQUE MATERIEL, ligne par ligne
    //$mc = new MaterielsController();
    foreach ($materiels as $materiel) :
    ?>
        <tr>            
        
            <?php
            // Date fin garantie ?
            $date_color = '';
7b381e28   Etienne Pallier   date fin garantie...
300
301
302
303
304
305
306
307
            $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"';
                /*
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
308
                $timeFin = new time($materiel->date_fin_garantie);
7b381e28   Etienne Pallier   date fin garantie...
309
                $date_fin_gar = new date("$timeFin->year-$timeFin->month-$timeFin->day");
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
310
                //$dateFin = $dateFin->format('Ydm');
7b381e28   Etienne Pallier   date fin garantie...
311
312
313
                $date_fin_gar = $dateFin->format('Ymd');
                debug("datefin $date_fin_gar");
                */
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
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
                //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
8c519d1f   Etienne Pallier   Modif champs obli...
360
361
            $statut = $materiel->getNiceStatus();
            /*
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
362
363
            switch (h($materiel->status)) {
                case 'CREATED':
8c519d1f   Etienne Pallier   Modif champs obli...
364
365
                    //$statut = 'C';
                    $statut = 'A Valider';
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
366
367
                    break;
                case 'VALIDATED':
8c519d1f   Etienne Pallier   Modif champs obli...
368
369
                    //$statut = 'V';
                    $statut = 'Validé';
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
370
371
                    break;
                case 'TOBEARCHIVED':
8c519d1f   Etienne Pallier   Modif champs obli...
372
373
                    //$statut = 'T';
                    $statut = 'A sortir';
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
374
375
                    break;
                case 'ARCHIVED':
8c519d1f   Etienne Pallier   Modif champs obli...
376
377
                    //$statut = 'A';
                    $statut = 'Archivé';
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
378
379
380
381
382
                    break;
                default:
                    $statut = '';
                    break;
            }
8c519d1f   Etienne Pallier   Modif champs obli...
383
            */
d7cdfa86   Etienne Pallier   Grosse (re-)facto...
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
            ?>
            <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 
            $lieu = $materiel->has('site') ? h($materiel->site->nom) : '';
            if ($materiel->lieu_detail) {
                if ($materiel->has('site')) $lieu .= '-';
            	$lieu .= $materiel->lieu_detail;
            }
            ?>
            <td class="smallText"><?=$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>