view.ctp 3.06 KB

<div class="emprunts view col-lg-12 col-md-12 col-sm-12">
	<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'), [
        echo $this->Html->link(__('<i class="icon-pencil"></i>'), [
            'action' => 'edit',
            $emprunt->id
        ], [
            'escape' => false,
            'onclick' => 'return true;'
        ]);
        //echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer cet emprunt'), [
        echo $this->Form->postLink(__('<i class="icon-trash"></i>'), [
            '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>
-->