> ''
];
// FORMULAIRE DE RECHERCHE
echo $this->Form->create();
echo $this->Form->input ( 's_date_emprunt', [
'placeholder' => 'Cliquez pour selectionner une date',
'label' => 'Date emprunt',
'class' => 'datepicker'
]);
echo $this->Form->input ( 's_date_retour_emprunt', [
'placeholder' => 'Cliquez pour selectionner une date',
'label' => 'Date retour',
'class' => 'datepicker'
]);
//checkbox
echo $this->Form->input('emprunt_interne', [
'label' => 'Emprunt interne',
'options' => ['oui','non'] //pas ca
//'onchange' => 'emprunt_interne_externe();',
//'default' => false
]);
// interne
echo '
';
echo $this->Form->input ( 'nom_emprunteur_int', [
'options' => $nom_emprunteur_int,
'empty' => 'Tous',
'label' => 'Nom de l\'emprunteur'
]);
echo $this->Form->input ('site', [
'label' => 'Site',
'empty' => 'Tous',
'options' => $s_site
]);
echo $this->Form->input ('e_lieu_detail', [
'label' => 'Pièce',
'empty' => 'Tous',
'options' => $s_e_lieu_detail
]);
echo '
';
// EMPRUNT EXTERNE
echo '
';
echo $this->Form->input ( 'nom_emprunteur_ext', [
'label' => 'Nom de l\'emprunteur',
'options' => $nom_emprunteur_ext,
'empty' => 'Tous'
]);
echo $this->Form->input ( 'laboratoire', [
'label' => 'Lieu',
'options' => $s_laboratoire,
'empty' => 'Tous'
]);
echo '
';
// -------Bouton recherche Bas---------
echo $this->Form->submit('Rechercher', ['style' => 'width: 20%']);
echo '
';
?>
>
request->session()->write("resultTri", $_results);
?>
= __('') ?> |
= $this->Paginator->sort('id', 'N°') ?> |
= $this->Paginator->sort('designation', 'Materiels') ?> |
= $this->Paginator->sort('emprunt_interne', 'Interne') ?> |
= $this->Paginator->sort('laboratoire', 'Laboratoire') ?> |
= $this->Paginator->sort('e_lieu_detail', 'Piece') ?> |
= $this->Paginator->sort('site', 'Site') ?> |
= $this->Paginator->sort('date_emprunt', 'Date d\'emprunt') ?> |
= $this->Paginator->sort('date_retour_emprunt', 'Date de retour') ?> |
= $this->Paginator->sort('nom_emprunteur', "Nom emprunteur") ?> |
';
$mat = $materiels->find()->where(['id =' => $emprunt->materiel_id])->first();
$sit = $sites->find()->where(['id =' => $emprunt->site_id])->first();
?>
nom_createur])) || (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur']))
|| ($role == 'Responsable' &&
((isset($userConnected->groupes_metier_id) && $userConnected->groupes_metier_id != $idGmNa && $emprunt->groupes_metier_id == $userConnected->groupes_metier_id)
||(isset($userConnected->groupe_thematique_id) && $userConnected->groupe_thematique_id != $idGtNa && $emprunt->groupes_thematique_id == $userConnected->groupe_thematique_id)))) {
echo $this->Html->link(__(''), ['action' => 'edit', $emprunt->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]);
echo $this->Form->postLink(__(''), ['action' => 'delete', $emprunt->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $emprunt->id)]);
echo ' | ';
}
//$this->Html->link($site['nom'],['controller' => 'Sites', 'action' =>'view', $sit['id']])
?>
Html->link('Emprunt '.$this->Number->format($emprunt->id), ['action' => 'view', $emprunt->id])?> |
= $this->Html->link($mat['designation'], ['controller' => 'Materiels', 'action' => 'view', $mat['id']])?> |
emprunt_interne) == true ? "Y" : "N" ; ?> |
= h($emprunt->laboratoire) ?> |
= h($emprunt->e_lieu_detail) ?> |
= $this->Html->link($sit['nom'],['controller' => 'Sites', 'action' =>'view', $sit['id']]) ?> |
= h($emprunt->date_emprunt) ?> |
= h($emprunt->date_retour_emprunt) ?> |
= h($emprunt->nom_emprunteur) ?> |
';
endforeach;
echo '';
echo '
';
} else {
echo 'Aucun résultats pour cette recherche.';
}
?>