view.ctp
5.67 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
<div class="suivis view">
<h2>Détail suivi</h2>
<table style="margin-bottom: 30px;">
<div class="actions" style="margin-bottom: 20px; width: 100%; float: none; padding: 10px 0;">
<?php
if(($role == 'Utilisateur' && in_array($username, [$suivi->nom_createur])) || (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur']))
|| ($role == 'Responsable' &&
((isset($userConnected->groupes_metier_id) && $userConnected->groupes_metier_id != $idGmNa && $suivi->groupes_metier_id == $userConnected->groupes_metier_id)
||(isset($userConnected->groupe_thematique_id) && $userConnected->groupe_thematique_id != $idGtNa && $suivi->groupes_thematique_id == $userConnected->groupe_thematique_id)))) {
echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce suivi'),
['action' => 'edit', $suivi->id],
['escape' => false,'onclick' => 'return true;']
);
echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce suivi'),
['action' => 'delete', $suivi->id],
['style'=>'margin-left: 10px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $suivi->id)]
);
echo $this->Html->link('<i class="icon-file"></i> Lier un Doc.',
['controller' => 'documents',
'action' => 'add',
$suivi->id],
['style'=>'margin-left: 10px', 'title' => 'Attacher un Doc. à ce suivi',
'escape' => false]
);
}
?>
</div>
<tr><th style="width: 250px;"></th><th></th></tr>
<?php
$displayElement(__('Materiel'), $suivi->has('materiel') ? $this->Html->link($suivi->materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $suivi->materiel->id]) : '');
$displayElement(__('Numéro interne (labo)'), $suivi->has('materiel') ? h($suivi->materiel->numero_laboratoire) : '');
$displayElement(__('Statut'), h($suivi->statut));
$displayElement(__('Date Intervention'), h($suivi->date_controle));
$displayElement(__('Date Prochaine Intervention'), h($suivi->date_prochain_controle));
$displayElement(__('Type d\'intervention'), $suivi->has('type_suivi') ? h($suivi->type_suivi->nom) : '');
$displayElement(__('Prestataire'), h($suivi->organisme));
$displayElement(__('Fréquence'), h($suivi->frequence).' '.h($suivi->type_frequence));
$displayElement(__($configuration->nom_groupe_thematique), $suivi->has('groupes_thematique') ? $this->Html->link($suivi->groupes_thematique->nom, ['controller' => 'GroupesThematiques', 'action' => 'view', $suivi->groupes_thematique->id]) : '');
$displayElement(__($configuration->nom_groupe_metier), $suivi->has('groupes_metier') ? $this->Html->link($suivi->groupes_metier->nom, ['controller' => 'GroupesMetiers', 'action' => 'view', $suivi->groupes_metier->id]) : '');
$displayElement(__('Commentaire'), h($suivi->commentaire));
$displayElement(__('Date création'), h($suivi->created));
$displayElement(__('Nom du créateur'), h($suivi->nom_createur));
$displayElement(__('Date modification'), h($suivi->modified));
$displayElement(__('Nom du modificateur'), h($suivi->nom_modificateur));
?>
</table>
<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 suivi (<?= count($suivi->documents) ?>)</span>
</h3>
<div id="fichiers" style="margin-bottom: 20px;">
<?php if (!empty($suivi->documents)) { ?>
<table>
<tr>
<th class="actions"><?= __('') ?></th>
<th><?= __('Nom') ?></th>
<th><?= __('Type') ?></th>
</tr>
<?php foreach ($suivi->documents as $documents):
$type = $typeDocuments->find()->where(['id =' => h($documents->type_document_id)])->first()['nom'];
?>
<tr>
<td class="actions" style="padding: 6px 0; text-align: left;">
<?= $this->Html->link(__('<i class="icon-download-alt"></i>'), '/webroot/files/'.$documents->id.'.'.$documents->type_doc, ['title' => 'Télécharger', 'style' => 'margin:0', 'escape' => false ]) ?>
<?php
if(($role == 'Utilisateur' && in_array($username, [$suivi->nom_createur])) || (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur']))
|| ($role == 'Responsable' &&
((isset($userConnected->groupes_metier_id) && $userConnected->groupes_metier_id != $idGmNa && $suivi->groupes_metier_id == $userConnected->groupes_metier_id)
||(isset($userConnected->groupe_thematique_id) && $userConnected->groupe_thematique_id != $idGtNa && $suivi->groupes_thematique_id == $userConnected->groupe_thematique_id)))) {
?>
<?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['controller' => 'Documents', 'action' => 'edit', $documents->id], ['escape' => false, 'style' => 'margin:0'])?>
<?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['controller' => 'Documents', 'action' => 'delete', $documents->id], ['escape' => false, 'style' => 'margin:0', 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $documents->id)]) ?>
</td>
<?php } ?>
<td><?= $this->Html->link($documents->nom, ['controller' => 'documents', 'action' => 'view', $documents->id]) ?></td>
<td><?= $type ?></td>
</tr>
<?php endforeach; ?>
</table>
<?php }else { echo 'Aucun fichier pour ce matériel.'; } ?>
</div>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
<?php echo $this->element('menu_view',
[ 'pluralHumanName' => 'Suivis',
'singularHumanName' => 'Suivi',
'lien' => $suivi->id ]) ?>
</div>