view.ctp 2.14 KB
<?php 
function displayElement($nom, $valeur) {
	if ($valeur != "")
		echo '<tr><td><strong>'.$nom.' </strong></td><td>'.$valeur.'</td></tr>';
}
?>



<div class="emprunts view">
    <h2>Détail emprunt</h2>
    <table style="margin-bottom: 30px;">
    
    	<tr><th style="width: 250px;"></th><th></th></tr>
    	
    	<?php 
    	
    	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: 110px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $emprunt->id)]
    				);
    	
    	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'), strftime("%e %B %Y", strtotime(h($emprunt->date_emprunt))));
    	displayElement(__('Date Retour Emprunt'), strftime("%e %B %Y", strtotime(h($emprunt->date_retour_emprunt))));
    	displayElement(__('Lieu de stockage'), h($emprunt->e_lieu_stockage).'-'.h($emprunt->e_lieu_detail));
    	displayElement(__('Responsable'), h($emprunt->nom_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>