view.ctp
31.2 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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
<?php
use Cake\I18n\Time;
use Cake\I18n\Date;
use Cake\ORM\TableRegistry;
// (EP 18/5/19)
// --- Elements set by Controller for this view ---
// - Constants :
//$CAN_EDIT = $CAN_EDIT;
$PDF_ENGINE = $PDF_ENGINE;
$configuration = $configuration;
// - User status:
$role = $role;
$username = $username;
$priviledgedUser = $priviledgedUser;
$USER_IS_UTILISATEUR = $USER_IS_UTILISATEUR;
$USER_IS_RESPONSABLE = $USER_IS_RESPONSABLE;
$USER_IS_RESPONSABLE_OR_MORE = $USER_IS_RESPONSABLE_OR_MORE;
$USER_IS_ADMIN = $USER_IS_ADMIN;
$USER_IS_ADMIN_OR_MORE = $USER_IS_ADMIN_OR_MORE;
$USER_IS_ADMINPLUS = $USER_IS_ADMINPLUS;
$USER_IS_ADMINPLUS_OR_MORE = $USER_IS_ADMINPLUS_OR_MORE;
$USER_IS_SUPERADMIN = $USER_IS_SUPERADMIN;
$USER_IS_CREATOR_OR_OWNER = $USER_IS_CREATOR_OR_OWNER;
$USER_IS_SAME_GROUP = $USER_IS_SAME_GROUP;
// (EP) TODO: Vraiment utile ??? A virer je pense
$PROFILE_USER = $PROFILE_USER;
$PROFILE_ADMIN = $PROFILE_ADMIN;
$PROFILE_RESPONSABLE = $PROFILE_RESPONSABLE;
$PROFILE_ADMINPLUS = $PROFILE_ADMINPLUS;
$PROFILE_SUPERADMIN = $PROFILE_SUPERADMIN;
$allProfiles = $allProfiles;
// - Materiel status:
$idGmNa = $idGmNa;
$idGtNa = $idGtNa;
$IS_CREATED = $IS_CREATED;
$IS_VALIDATED = $IS_VALIDATED;
$IS_TOBEARCHIVED = $IS_TOBEARCHIVED;
$IS_ARCHIVED = $IS_ARCHIVED;
// - User capabilities on materiel:
$CAN_EDIT = $CAN_EDIT;
$CAN_ATTACH_A_DOC = $CAN_ATTACH_A_DOC;
$CAN_COPY = $CAN_COPY;
$CAN_PRINT_LABEL = $CAN_PRINT_LABEL;
$CAN_MANAGE_SUIVIS = $CAN_MANAGE_SUIVIS;
$CAN_MANAGE_EMPRUNTS = $CAN_MANAGE_EMPRUNTS;
$CAN_MANAGE_FILES = $CAN_MANAGE_FILES;
// Autres
// TODO: yena plein d'autres
// ...
// - Fonctions :
$displayElement = $displayElement;
$dateProchainControleVerif = $dateProchainControleVerif;
$echoActionButton = $echoActionButton;
/* (EP) moved to controller
function $echoActionButton($html, $icon_class, $title, $action, $id, $tip='', $controller='materiels', $mat=NULL, $photo=NULL) {
echo $html->link(
__("<i class=$icon_class></i> $title"),
[
'controller' => $controller,
'action' => $action,
$id,
$mat,
$photo
],
[
'title' => $tip,
'escape' => false,
'onclick' => 'return true;',
'style' => 'margin-right: 10px'
]
);
}
*/
//$PDF_ENGINE = "FPDF";
//$PDF_ENGINE = "DOMPDF";
// EP
// Set some useful global variables for this view
/*
* EP => moved to Controller
* // 1) Materiel settings
*
* const CREATED = 1;
* const VALIDATED = 2;
* const TOBEARCHIVED = 3;
* const ARCHIVED = 4;
* $allStatus = [
* 'CREATED' => CREATED,
* 'VALIDATED' => VALIDATED,
* 'TOBEARCHIVED' => TOBEARCHIVED,
* 'ARCHIVED' => ARCHIVED,
* ];
* $IS_CREATED = ( $materiel->status == 'CREATED' );
* $IS_VALIDATED = ( $materiel->status == 'VALIDATED' );
* $IS_TOBEARCHIVED = ( $materiel->status == 'TOBEARCHIVED' );
* $IS_ARCHIVED = ( $materiel->status == 'ARCHIVED' );
* $status = $allStatus[$materiel->status];
*
* // 2) User settings
* const PROFILE_USER = 1;
* const PROFILE_RESPONSABLE = 2;
* const PROFILE_ADMIN = 3;
* const PROFILE_ADMINPLUS = 4;
* const PROFILE_SUPERADMIN = 5;
* $allProfiles = [
* 'Utilisateur' => PROFILE_USER,
* 'Responsable' => PROFILE_RESPONSABLE,
* 'Administration' => PROFILE_ADMIN,
* 'Administration Plus' => PROFILE_ADMINPLUS,
* 'Super Administrateur' => PROFILE_SUPERADMIN
* ];
*
* $profile = $allProfiles["$role"];
* // echo $profile;
*
* $USER_IS_UTILISATEUR = ($profile == $PROFILE_USER);
* $USER_IS_RESPONSABLE = ($profile == $PROFILE_RESPONSABLE);
* $USER_IS_ADMIN = ($profile == $PROFILE_ADMIN);
* $USER_IS_ADMINPLUS = ($profile == $PROFILE_ADMINPLUS);
* $USER_IS_SUPERADMIN = ($profile == $PROFILE_SUPERADMIN);
*
* $USER_IS_ADMIN_OR_MORE = $profile >= $PROFILE_ADMIN;
*/
// $dateProchainControleVerif = function($t) {
// $time = Time::now(); // On récupère la date et l'heure actuelles
// $today = new DateTime((new date("$time->year-$time->month-$time->day"))->format('Y-m-d'));
// $time1 = new time($t);
// $dateTime1 = new DateTime((new date("$time1->year-$time1->month-$time1->day"))->format('y-m-d'));
// $interval = ($today->diff($dateTime1));
// $strInterval = $interval->format('%a');
// return (int) $strInterval;
// };
// debug("user=".$priviledgedUser);
// debug("user name = ".$username);
/*
$USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER = $USER_IS_UTILISATEUR && in_array($username, [
$materiel->nom_createur,
$materiel->nom_responsable
]);
$USER_IS_RESPONSABLE_AND_CREATOR_OR_OWNER = $USER_IS_RESPONSABLE && in_array($username, [
$materiel->nom_createur,
$materiel->nom_responsable
]);
$USER_IS_RESPONSABLE_AND_SAME_GROUP = $USER_IS_RESPONSABLE && ((isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa && $materiel->groupes_metier_id == $priviledgedUser->groupes_metier_id) || (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa && $materiel->groupes_thematique_id == $priviledgedUser->groupe_thematique_id));
*/
// TODO: to be set by controller
/*
$CAN_EDIT = $IS_CREATED && ($USER_IS_ADMIN_OR_MORE || $USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP || $USER_IS_RESPONSABLE_AND_CREATOR_OR_OWNER);
$CAN_ATTACH_A_DOC = $USER_IS_ADMIN_OR_MORE || $USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP || $USER_IS_RESPONSABLE_AND_CREATOR_OR_OWNER;
$CAN_COPY = $IS_CREATED and ($USER_IS_ADMIN_OR_MORE || $USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER);
$CAN_PRINT_LABEL = $IS_VALIDATED && $configuration->hasPrinter && $USER_IS_ADMIN_OR_MORE;
*/
?>
<div class="materiels view">
<h2>
<?php
// if (h($materiel->status) == 'ARCHIVED') echo '<i class="icon-inbox"></i> ';
if ($IS_ARCHIVED) echo '<i class="icon-inbox"></i> ';
$panne = h($materiel->hors_service) ? ' (HORS SERVICE)' : '';
?>
<?=h($materiel->designation) . $panne?>
<span style="font-size: 70%; color: grey;"><?=h($materiel->numero_laboratoire)?>
<?php
if ($IS_ARCHIVED) echo ' (Archivé)';
?>
</span>
</h2>
<br />
<div id="materiel_images" style="text-align: center;">
<?php
/* Maintenant que les dénominations des fichiers dl on changé on a besoin des
* informations de la photo pour retrouver son nom et l'afficher, l'id ne suffit plus
* on parcourt donc les documents liés à ce matériel
*/
foreach ($materiel->documents as $document) {
// et si le document est la photo liée, on l'affiche, pour cela
if($document->photo) {
//on récupère le doc
$photo = $document;
//on reconstitue le nom a partir des paramètres (idmat_nom_id.extension)
$nomPhoto = $photo->materiel_id . "_" . $photo->nom . "_" . $photo->id . "." .$photo->type_doc;
//Et si la photo n'est pas vide on l'affiche
if(!empty($photo)) {
echo $this->Html->image('photos/'.$nomPhoto, [
//si il y a une erreur sur le nom affiche le texte alternatif
'alt' => 'Photo du matériel',
'style' => 'max-width: 300px; text-align: center;'
]);
}
}
}
// QRCODE (Url)
//debug($this->request->env('HTTP_REFERER')); // 'http://labinvent.test/materiels'
//debug($this->request);
//$proto = $this->request->env('REQUEST_SCHEME');
$proto = $this->request->env('HTTP_REFERER');
$proto = substr($proto, 0,strpos($proto,'://'));
$qrCodeUrl = $proto.'://' . $this->request->env('SERVER_NAME') . $this->request->env('REQUEST_URI');
$this->request->getSession()->write("qrUrl", $qrCodeUrl);
$this->requestAction('/QrCodes/creer/');
echo $this->Html->image('qrcodes/' . $this->request->getSession()
->read("filename"), [
'alt' => 'QrCode : ' . $materiel->numero_laboratoire,
'style' => 'float: right'
]);
?>
</div>
<br />
<!-- BOUTONS (DIV) -->
<div id="boutons" class="actions" style="margin-bottom:20px; width:100%; float:none; padding:5px 0;">
<?php
// --- (1) BOUTONS 1st row ---
$bStyle = 'margin-right: 10px';
// BOUTON "Editer"
if ($CAN_EDIT) $echoActionButton($this->Html, 'icon-pencil', $bStyle, ' Editer ce matériel', 'materiels', 'edit', $materiel->id);
// BOUTONS "NOUVEAU SUIVI" et "NOUVEL EMPRUNT"
// if ($materiel->status == 'VALIDATED') {
if ($IS_VALIDATED) {
$echoActionButton($this->Html, 'icon-plus', $bStyle, ' Nouv. Suivi', 'suivis', 'add', $materiel->id, [], 'Faire un nouveau suivi de ce matériel');
/*
echo $this->Html->link('<i class="icon-plus"></i> Nouv. Suivi', [
'controller' => 'suivis',
'action' => 'add',
$materiel->id
], [
'title' => 'Faire un nouveau suivi de ce matériel',
'style' => 'margin-right: 10px',
'escape' => false
]); // End link
*/
$echoActionButton($this->Html, 'icon-plus', $bStyle, ' Nouv. Emprunt', 'emprunts', 'add', $materiel->id, [], 'Faire un nouvel emprunt de ce matériel');
}
// BOUTONS "Lier un Doc" et "Remplacer/Lier photo"
if ($CAN_ATTACH_A_DOC) {
$echoActionButton($this->Html, 'icon-file', $bStyle, ' Lier un Doc.', 'documents', 'add', $materiel->id, ['mat'], 'Attacher un Doc. à ce matériel');
// BOUTON "photo"
if ($materiel->photo_id != null)
$echoActionButton($this->Html, 'icon-file', $bStyle, ' Remplacer la photo.', 'documents', 'add', $materiel->id, ['mat', 'photo'], 'Remplacer la photo de ce matériel');
else
$echoActionButton($this->Html, 'icon-file', $bStyle, ' Lier une photo.', 'documents', 'add', $materiel->id, ['mat', 'photo'], 'Attacher une photo à ce matériel');
}
// BOUTONS Doc admission et sortie (admin+)
if ($USER_IS_ADMIN_OR_MORE) {
// Doc admission (admin only)
if ($IS_CREATED || $IS_VALIDATED) {
if ($PDF_ENGINE == "FPDF") {
// FPDF
$action = 'admission';
$data = $materiel->numero_laboratoire;
}
else {
// DOMPDF
$action = 'admission_pdf';
$data = $materiel->numero_laboratoire . ".pdf";
}
// if (($materiel->status == 'VALIDATED') || ($materiel->status == 'CREATED')) {
$echoActionButton($this->Html, 'icon-file', $bStyle, ' Doc. admission', 'documents', $action, $data, [], "Voir le document d'admission");
}
// Doc sortie (admin only)
else if ($IS_ARCHIVED || $IS_TOBEARCHIVED) {
if ($PDF_ENGINE == "FPDF") {
// FPDF
$action = 'sortie';
$data = $materiel->numero_laboratoire;
}
else {
// DOMPDF
$action = 'sortie_pdf';
$data = $materiel->numero_laboratoire . ".pdf";
}
// else if (($materiel->status == 'ARCHIVED') || ($materiel->status == 'TOBEARCHIVED')) {
$echoActionButton($this->Html, 'icon-file', $bStyle, ' Doc. sortie', 'documents', $action, $data, [], "Voir le document de sortie");
}
} // Doc admission et sortie
// --- (2) BOUTONS 2nd row ---
echo "<br />";
// (EP) Change bouton style pour que la 2ème ligne de boutons ne chevauche pas la 1ère
// En pratique, il suffit que un seul bouton de cette ligne aie ce style (pas nécessaire pour les autres)
// Mais bon, c'est difficile de savoir lequel sera toujours présent...
// Donc, on applique ce style à TOUS les boutons de cette 2e ligne
$bStyle2 = $bStyle.'; margin-top:10px; display:inline-block';
$bStyle2Red = $bStyle2 . '; color:red';
// BOUTON de changement de statut : Valider, Invalider, Demander archivage, ou Archiver
if ($USER_IS_ADMIN_OR_MORE || ($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP)) {
// CREATED
if ($IS_CREATED)
// Bouton VALIDER
$echoActionButton($this->Html, 'icon-ok-sign', $bStyle2Red, ' Valider', '', 'statusValidated', $materiel->id, [], "Valider ce matériel");
// VALIDATED or more
else {
// Bouton Invalider
$echoActionButton($this->Html, 'icon-remove-sign', $bStyle2Red, ' Invalider', '', 'statusCreated', $materiel->id, [],
"dé-valider le matériel (le repasser au statut Créé, il faudra le re-valider ensuite)"
);
// Bouton TBA
if ($IS_VALIDATED) $echoActionButton($this->Html, 'icon-ok-sign', $bStyle2Red, ' Demander sortie', '', 'statusToBeArchived', $materiel->id, [],
"Demander la sortie de l'inventaire"
);
// Bouton ARCHIVER
//if ($IS_TOBEARCHIVED && $role!='Responsable') $echoActionButton(
if ($IS_TOBEARCHIVED && $USER_IS_ADMIN_OR_MORE) $echoActionButton(
$this->Html, 'icon-ok-sign', $bStyle2Red, ' Sortie inventaire', '', 'statusArchived', $materiel->id, [],
"Sortir définitivement de l'inventaire",
"Êtes-vous sur de bien vouloir archiver $materiel->designation ?"
);
}
}
// BOUTON Copier (seulement pour les materiels qui sont CREATED et pour les ADMINet+ ou USER owner)
if ($CAN_COPY) $echoActionButton($this->Html, 'icon-plus', $bStyle2, ' Copier ce matériel', '', 'add', $materiel->id, [], "Copier ce matériel");
// BOUTON ETIQUETTE (si imprimante disponible)
if ($CAN_PRINT_LABEL) {
// - Bouton "Imprimer sur un ruban"
$echoActionButton($this->Html, 'icon-print', $bStyle, ' Impr. étiquette', '', 'printLabelRuban', h($materiel->id), [], "Imprimer sur un ruban");
// - Bouton "Etiquette posée"
$echoActionButton(
$this->Html, 'icon-file', $bStyle,
$materiel->etiquette ? " Etiquette NON collée" : " Etiquette collée",
'materiels',
$materiel->etiquette ? 'setLabelIsNotPlaced' : 'setLabelIsPlaced',
h($materiel->id), ['view'],
$materiel->etiquette ?
"En cliquant sur ce bouton, vous déclarez que l'étiquette n'a PAS été posée sur le matériel"
:
"En cliquant sur ce bouton, vous certifiez que l'étiquette a bien été posée sur le matériel"
);
//'style' => 'margin-left: 0px; margin-right: 10px',
}
// BOUTON "Voir fiche matériel"
$bStyleGreen = $bStyle.'; background: green; color: white';
echo "<br/>";
echo "<br/>";
// echo '<div id="fiche pdf" style="margin-bottom: 20px; width: 100%; float: none; padding: 10px 0;">';
if ($PDF_ENGINE == "FPDF") {
// FPDF
$action = 'ficheMateriel';
$data = $materiel->numero_laboratoire;
}
else {
// DOMPDF
$action = 'fiche_materiel_pdf';
$data = $materiel->numero_laboratoire.'.pdf';
}
$echoActionButton($this->Html, 'icon-file', $bStyleGreen, ' Fiche PDF du matériel', 'documents', $action, $data, [],
"Voir la fiche du materiel"
);
// FIN DIV BOUTONS
?>
</div>
<!-- INFORMATIONS -->
<h3 id="t_informations" style="cursor: pointer;">
<i class="icon-chevron-down" style="font-size: 14px;"
id="i_informations"></i> <span style="text-decoration: underline;">Informations</span>
</h3>
<div id="informations" style="margin-bottom: 20px;">
<table>
<tr>
<th style="width: 250px;"></th>
<th></th>
</tr>
<?php
// Pour changer la couleur de la date de garantie si elle est passée - Ajout par Thibault Ajas le 02/05/2017
$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('Ymd'); // On formatte la date initialement en 31-12-2000 en un format qui pourra etre comparé : 20001231
if ($materiel->date_fin_garantie !== NULL) {
$timeFin = new time($materiel->date_fin_garantie);
$dateFin = new date("$timeFin->year-$timeFin->month-$timeFin->day");
$dateFin = $dateFin->format('Ymd');
}
$style = '';
if (isset($dateFin) && $today >= $dateFin)
$style = 'style="color: #FF0000"';
$type = "";
if (h($materiel->materiel_administratif) == 1 && h($materiel->materiel_technique) == 1)
$type = 'Administratif et technique';
else if (h($materiel->materiel_administratif) == 1)
$type = 'Administratif';
else if (h($materiel->materiel_technique) == 1)
$type = 'Technique';
//echo '<tr><td><strong>' . __('Description') . ' </strong></td><td>' . nl2br($materiel->description) . '</td></tr>';
// La variable-fonction $displayElement est définie dans le fichier src/Controller/AppController.php
//On va utiliser $displayElement pour l'affichage de tout les champs pour mettre une norme en place
$displayElement(__('Nom du materiel'),$materiel->designation);
$displayElement(__('Description'),$materiel->description);
$displayElement(__('Materiel inventorié'), $type);
$displayElement(__('Organisme'), $materiel->has('organisme') ? h($materiel->organisme->nom) : '');
$displayElement(__('Domaine'), $materiel->has('sur_category') ? h($materiel->sur_category->nom) : '');
$displayElement(__('Catégorie'), $materiel->has('category') ? h($materiel->category->nom) : '');
$displayElement(__('Sous-Catégorie'), $materiel->has('sous_category') ? h($materiel->sous_category->nom) : '');
if (h($materiel->etiquette) == 0)
$etiq = "Non";
else
$etiq = "Oui";
$displayElement(__('Etiquette posée'), $etiq);
$displayElement(__('N° de série'), $materiel->numero_serie);
$displayElement(__($configuration->nom_groupe_thematique), $materiel->has('groupes_thematique') ? $this->Html->link($materiel->groupes_thematique->nom, [
'controller' => 'GroupesThematiques',
'action' => 'view',
$materiel->groupes_thematique->id
]) : '');
$displayElement(__($configuration->nom_groupe_metier), $materiel->has('groupes_metier') ? $this->Html->link($materiel->groupes_metier->nom, [
'controller' => 'GroupesMetiers',
'action' => 'view',
$materiel->groupes_metier->id
]) : '');
if ($configuration->metrologie == 1) {
if (h($materiel->metrologie) == 0)
$metro = "Non";
else
$metro = "Oui";
$displayElement(__('Métrologie'), $metro);
}
$displayElement(__('Date d\'achat'), h($materiel->date_acquisition));
$displayElement(__('Date de reception'), h($materiel->date_reception));
if (! empty(h($materiel->duree_garntie))) {
$displayElement(__('Duree garantie'), h($materiel->duree_garantie) . ' ' . h($materiel->unite_duree_garantie));
}
$displayElement(__('Date fin de garantie'), h($materiel->date_fin_garantie), $style);
$displayElement(__('Statut'), h($materiel->status));
if ($materiel->status == 'ARCHIVED') {
$displayElement(__('Date d\'archivage'), h($materiel->date_archivage));
}
$displayElement(__('Prix (HT)'), h($materiel->prix_ht) . ' €');
$displayElement(__('Fournisseur'), $materiel->has('fournisseur') ? $materiel->fournisseur->nom : '');
$displayElement(__('Lieu de stockage'), $materiel->has('site') ? h($materiel->site->nom) : '');
$displayElement(__('Détail lieu de stockage'), h($materiel->lieu_detail));
$displayElement(__('Nom de l\'utilisateur'), $this->Html->link(h($materiel->nom_responsable), 'mailto:' . h($materiel->email_responsable)));
$displayElement(__('N. interne (labo)'), h($materiel->numero_laboratoire));
$gestionnaire = TableRegistry::get('Users')->find()->where([
'id =' => $materiel->gestionnaire_id
]);
$displayElement(__('Nom du gestionnaire de référence'), h($gestionnaire->first()['nom']));
if ($role == 'Super Administrateur') {
$displayElement(__('Date création'), h($materiel->created));
$displayElement(__('Nom du créateur'), h($materiel->nom_createur));
$displayElement(__('Date modification'), h($materiel->modified));
$displayElement(__('Nom du modificateur'), h($materiel->nom_modificateur));
}
?>
</table>
</div>
<!-- INFORMATIONS -->
<!-- PARTIE ADMIN -->
<?php
if ($USER_IS_ADMIN_OR_MORE) {
// if (in_array($role, ['Administration','Administration Plus','Super Administrateur'])) {
echo '<h3 id="t_informations_admin" style="cursor: pointer;">';
echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_informations_admin"></i>';
echo '<span style="text-decoration: underline;"> Informations administratives</span>';
echo '</h3>';
echo '<div id="informations_admin" style="margin-bottom: 20px;">';
echo '<table>';
echo '<tr><th style="width: 250px;"></th><th></th></tr>';
echo '<tr><td><strong>' . __('CentreFinancier/EOTP') . ' </strong></td><td>' . h($materiel->eotp) . '</td></tr>';
echo '<tr><td><strong>' . __('N° commande') . ' </strong></td><td>' . h($materiel->numero_commande) . '</td></tr>';
echo '<tr><td><strong>' . __('Code comptable') . ' </strong></td><td>' . h($materiel->code_comptable) . '</td></tr>';
echo '<tr><td><strong>' . __('N. Inventaire Organisme') . ' </strong></td><td>' . h($materiel->numero_inventaire_organisme) . '</td></tr>';
echo '<tr><td><strong>' . __('N. inventaire (ancien)') . ' </strong></td><td>' . h($materiel->numero_inventaire_old) . '</td></tr>';
echo '</table>';
echo '</div>';
}
$bStyle = 'margin:0';
?>
<!-- SUIVIS -->
<h3 id="t_suivis" style="cursor: pointer;">
<i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i>
<span style="text-decoration: underline;">Suivi(s) du matériel (<?=count($materiel->suivis)?>)</span>
</h3>
<div id="suivis" style="margin-bottom: 20px;">
<?php if (! empty($materiel->suivis)) { ?>
<table>
<tr>
<th class="actions"><?=__('')?></th>
<th><?=__('N°')?></th>
<th><?=__('Type')?></th>
<th><?=__('Intitulé')?></th>
<th><?=__('Date début / Fréquence')?></th>
<th><?=__('Date fin / Répétition')?></th>
<th><?=__('Statut')?></th>
</tr>
<?php foreach ($materiel->suivis as $suivi) :?>
<tr>
<td class="actions" style="padding: 6px 0; text-align: left;">
<?php
//if ($USER_IS_ADMIN_OR_MORE || $USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP || $USER_IS_RESPONSABLE_AND_CREATOR_OR_OWNER) {
/*
if ($USER_IS_ADMIN_OR_MORE
|| $USER_IS_CREATOR_OR_OWNER
|| ($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP)) {
*/
if ($CAN_MANAGE_SUIVIS) {
// Edit Suivis
$echoActionButton($this->Html, 'icon-pencil', $bStyle, '', 'Suivis', 'edit', $suivi->id);
/*
echo $this->Html->link(__('<i class="icon-pencil"></i>'), [
'controller' => 'Suivis',
'action' => 'edit',
$suivi->id
], [
'escape' => false,
'style' => 'margin:0'
]);
*/
// Delete Suivis
//TODO: postLink ??? kesako ?
//$echoActionButton($this->Html, 'icon-trash', $bStyle, '', 'Suivis', 'delete', $suivi->id, [], "", "");
echo $this->Form->postLink(__('<i class="icon-trash"></i>'), [
'controller' => 'Suivis',
'action' => 'delete',
$suivi->id
], [
'escape' => false,
'style' => 'margin:0',
'confirm' => __('Êtes-vous sur de vouloir annuler ce suivi #{0} ?', $suivi->id)
]);
}
?>
</td>
<td><?=$this->Html->link('Suivi ' . $suivi->id, ['controller' => 'suivis','action' => 'view',$suivi->id])?></td>
<td><?=$typeSuivis->find()->where(['id =' => h($suivi->type_suivi_id)])->first()['nom'];?></td>
<td><?=h($suivi->intitule)?></td>
<?php if ($typeSuivis->find()->where(['id =' => h($suivi->type_suivi_id)])->first()['nom'] == "Panne" ) {?>
<td><?=h($suivi->date_controle)?></td>
<td><?=h($suivi->date_prochain_controle)?></td>
<?php } else { ?>
<td><?=h($suivi->frequence)?></td>
<td><?=h($suivi->type_frequence)?></td>
<?php } ?>
<td><?=h($suivi->statut)?></td>
</tr>
<?php endforeach;?>
</table>
<?php
} else {
echo 'Aucun suivi pour ce matériel.';
}
?>
</div>
<!-- FIN SUIVIS -->
<!-- EMPRUNTS -->
<h3 id="t_emprunts" style="cursor: pointer;">
<i class="icon-chevron-down" style="font-size: 14px;" id="i_emprunts"></i>
<span style="text-decoration: underline;">Emprunt(s) du matériel (<?=count($materiel->emprunts)?>)</span>
</h3>
<div id="emprunts" style="margin-bottom: 20px;">
<?php if (! empty($materiel->emprunts)) { ?>
<table>
<tr>
<th class="actions"><?=__('')?></th>
<th><?=__('N°')?></th>
<th><?=__('Emprunteur')?></th>
<th><?=__("Type")?></th>
<th><?=__('Lieu')?></th>
<th><?=__('Date emprunt')?></th>
<th><?=__('Date retour')?></th>
</tr>
<?php
foreach ($materiel->emprunts as $emprunt) :
$type = 'Externe';
$lieu = $emprunt['laboratoire'];
if ($emprunt['emprunt_interne'] == 1) {
$type = 'Interne';
$lieu = $sites->find()
->where([
'id =' => h($emprunt->site_id)
])
->first()['nom'] . '-' . h($emprunt->e_lieu_detail);
}
?>
<tr>
<td class="actions" style="padding: 6px 0; text-align: left;">
<?php
//if ($USER_IS_ADMIN_OR_MORE || $USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP || $USER_IS_RESPONSABLE_AND_CREATOR_OR_OWNER ) {
if ($CAN_MANAGE_EMPRUNTS) {
// Edit Emprunt
$echoActionButton($this->Html, 'icon-pencil', $bStyle, '', 'Emprunts', 'edit', $emprunt->id);
/*
echo $this->Html->link(__('<i class="icon-pencil"></i>'), [
'controller' => 'Emprunts',
'action' => 'edit',
$emprunt->id
], [
'escape' => false,
'style' => 'margin:0'
]);
*/
// Delete Emprunt
echo $this->Form->postLink(__('<i class="icon-trash"></i>'), [
'controller' => 'Emprunts',
'action' => 'delete',
$emprunt->id
], [
'escape' => false,
'style' => 'margin:0',
'confirm' => __('Êtes-vous sur de vouloir annuler cet emprunt #{0}?', $emprunt->id)
]);
}
?>
</td>
<td><?=$this->Html->link('Emprunt ' . $emprunt->id, ['controller' => 'emprunts','action' => 'view',$emprunt->id])?></td>
<td><?=h($emprunt->nom_emprunteur)?></td>
<td><?=h($type)?></td>
<td><?=h($lieu)?></td>
<td><?=h($emprunt->date_emprunt)?></td>
<td><?=h($emprunt->date_retour_emprunt)?></td>
</tr>
<?php endforeach;?>
</table>
<?php
} else {
echo 'Aucun emprunt pour ce matériel.';
}
?>
</div>
<!-- FIN EMPRUNTS -->
<!-- FICHIERS liés -->
<?php $nbFic = count($materiel->documents); ?>
<h3 id="t_fichiers" style="cursor: pointer;">
<i class="icon-chevron-down" style="font-size: 14px;" id="i_fichiers"></i>
<span style="text-decoration: underline;">Fichier(s) lié(s) au matériel (<?=$nbFic?>)</span>
</h3>
<div id="fichiers" style="margin-bottom: 20px;">
<?php if ($nbFic != 0) { ?>
<table>
<tr>
<th class="actions"><?=__('')?></th>
<th><?=__('Nom')?></th>
<th><?=__('Type')?></th>
<th><?=__('Miniature')?></th>
</tr>
<?php
foreach ($materiel->documents as $document) :
$p = ($document->photo) ? 'Oui' : '';
$type = $typeDocuments->find()
->where([
'id =' => h($document->type_document_id)
])
->first()['nom'];
?>
<tr>
<td class="actions" style="padding: 6px 0; text-align: left;">
<?php
if ($document->photo) {
// TODO: $echoActionButton()
echo $this->Html->link(__('<i class="icon-download-alt"></i>'), '/webroot/img/photos/' . $document->materiel_id .'_' . $document->nom.'_'. $document->id . '.' . $document->type_doc, [
'title' => 'Télécharger',
'style' => 'margin:0',
'escape' => false
]);
} else {
echo $this->Html->link(__('<i class="icon-download-alt"></i>'), '/webroot/files/' . $document->materiel_id .'_' . $document->nom.'_'. $document->id . '.' . $document->type_doc, [
'title' => 'Télécharger',
'style' => 'margin:0',
'escape' => false
]);
}
//if ($USER_IS_ADMIN_OR_MORE || $USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP || $USER_IS_RESPONSABLE_AND_CREATOR_OR_OWNER) {
if ($CAN_MANAGE_FILES) {
// Edit doc
$echoActionButton($this->Html, 'icon-pencil', $bStyle, '', 'Documents', 'edit', $document->id);
/*
echo $this->Html->link(__('<i class="icon-pencil"></i>'), [
'controller' => 'Documents',
'action' => 'edit',
$document->id
], [
'escape' => false,
'style' => 'margin:0'
]);
*/
// Delete doc
echo $this->Form->postLink(__('<i class="icon-trash"></i>'), [
'controller' => 'Documents',
'action' => 'delete',
$document->id
], [
'escape' => false,
'style' => 'margin:0',
'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $document->id)
]);
// Envoyer devis par mail (envoyer des mails avec les documents en pj)
echo $this->Form->postLink(__('<i class="icon-envelope"></i>'), [
'controller' => 'Documents',
'action' => __('mailDevis' ,$document->id),
$document->id
], [
'escape' => false,
'style' => 'margin:0',
'confirm' => __(' Voulez vous envoyer le document par mail ? ')
]);
}
?>
</td>
<td><?=$this->Html->link($document->nom, ['controller' => 'documents','action' => 'view',$document->id])?></td>
<td><?=$type?></td>
<td><?=$p?></td>
</tr>
<?php
endforeach
;
?>
</table>
<?php } else echo 'Aucun fichier pour ce matériel.'; ?>
</div>
<!-- FIN FICHIERS liés -->
</div>
<!-- "materiels view" -->
<!-- MENU -->
<div class="actions">
<?php echo $this->element('menu')?>
<?php
echo $this->element('menu_view', [
'pluralHumanName' => 'Matériels',
'singularHumanName' => 'Matériel',
'lien' => $materiel->id
])?>
</div>