Blame view

src/Template/Emprunts/view.ctp 2.92 KB
bb6d5bed   Alexandre   Migration des vue...
1

b2dade50   Prugniel   modifs Jeanne boo...
2
<div class="emprunts view col-lg-12 col-md-12 col-sm-12">
63c3cb16   epallier   Nombreux petits b...
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
	<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)
        ]);
    }
bb6d5bed   Alexandre   Migration des vue...
35
    
63c3cb16   epallier   Nombreux petits b...
36
    ?>
9b4da83b   Alexandre   Version: 2.5.0.0
37
    	</div>
9fc6b8a2   Alexandre   Version: 2.4.2.6
38

63c3cb16   epallier   Nombreux petits b...
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
		<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));
    ?>
bb6d5bed   Alexandre   Migration des vue...
72

64fba1a2   Alexandre   Base du projet : ...
73

6c4edfa3   Alexandre   First Commit LabI...
74
75
    </table>
</div>
4260780b   Alexandre   Migration vue, co...
76

b2dade50   Prugniel   modifs Jeanne boo...
77
<!--
63c3cb16   epallier   Nombreux petits b...
78
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
79
80
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
81
82
83
84
85
86

echo $this->element('menu_view', [
    'pluralHumanName' => 'Emprunts',
    'singularHumanName' => 'Emprunt',
    'lien' => $emprunt->id
])?>
b2dade50   Prugniel   modifs Jeanne boo...
87
88
		</div>
-->