view.ctp
2.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
<div class="emprunts view">
<h2>Détail emprunt</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, [$emprunt->nom_createur, $emprunt->nom_emprunteur])) || (in_array($role, ['Responsable', 'Administration', 'Administration Plus', 'Super Administrateur']))) {
echo $this->Html->link(__('<i class="icon-pencil"></i> Editer cet emprunt'),
['action' => 'edit', $emprunt->id],
['escape' => false,'onclick' => 'return true;']
);
echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer cet emprunt'),
['action' => 'delete', $emprunt->id],
['style'=>'margin-left: 10px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $emprunt->id)]
);
}
?>
</div>
<tr><th style="width: 250px;"></th><th></th></tr>
<?php
$displayElement(__('Materiel concerné'), $emprunt->has('materiel') ? $this->Html->link($emprunt->materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $emprunt->materiel->id]) : '');
$displayElement(__('Numéro interne (labo)'), $emprunt->has('materiel') ? h($emprunt->materiel->numero_laboratoire) : '');
$displayElement(__('Type d\'emprunt'), $emprunt->emprunt_interne ? __('Interne') : __('Externe'));
$displayElement(__('Date Emprunt'), h($emprunt->date_emprunt));
$displayElement(__('Date Retour Emprunt'), h($emprunt->date_retour_emprunt));
if (h($emprunt->emprunt_interne) == '1') { $displayElement(__('Lieu de stockage'), h($emprunt->site->nom).' - '.h($emprunt->e_lieu_detail)); } else { $displayElement('Lieu de stockage', h($emprunt->laboratoire)); }
$displayElement(__('Nom de l\'emprunteur'), $this->Html->link(h($emprunt->nom_emprunteur), 'mailto:'.h($emprunt->email_emprunteur)));
$displayElement(__('Email'), h($emprunt->email_emprunteur));
if ($emprunt->emprunt_interne != 1) {
$displayElement(__('Tel'), h($emprunt->tel));
}
$displayElement(__('Commentaire'), h($emprunt->commentaire));
$displayElement(__('Date création'), h($emprunt->created));
$displayElement(__('Nom du créateur'), h($emprunt->nom_createur));
$displayElement(__('Date modification'), h($emprunt->modified));
$displayElement(__('Nom du modificateur'), h($emprunt->nom_modificateur));
?>
</table>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
<?php echo $this->element('menu_view',
[ 'pluralHumanName' => 'Emprunts',
'singularHumanName' => 'Emprunt',
'lien' => $emprunt->id ]) ?>
</div>