nom_createur,
$emprunt->nom_emprunteur
])) || (in_array($role, [
'Responsable',
'Administration',
'Administration Plus',
'Super Administrateur'
]))) {
echo $this->Html->link(__(' Editer cet emprunt'), [
'action' => 'edit',
$emprunt->id
], [
'escape' => false,
'onclick' => 'return true;'
]);
echo $this->Form->postLink(__(' Supprimer cet emprunt'), [
'action' => 'delete',
$emprunt->id
], [
'style' => 'margin-left: 10px',
'escape' => false,
'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $emprunt->id)
]);
}
?>
|
|
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));
?>