> ''
];
// FORMULAIRE DE RECHERCHE
echo $this->Form->create();
echo $this->Form->control('s_date_emprunt', [
'placeholder' => 'Cliquez pour selectionner une date',
'label' => 'Date emprunt',
'class' => 'datepicker'
]);
echo $this->Form->control('s_date_retour_emprunt', [
'placeholder' => 'Cliquez pour selectionner une date',
'label' => 'Date retour',
'class' => 'datepicker'
]);
// checkbox
echo $this->Form->control('emprunt_interne', [
'label' => 'Emprunt interne',
'options' => [
'oui',
'non'
] // pas ca
// 'onchange' => 'emprunt_interne_externe();',
// 'default' => false
]);
// interne
echo '
';
echo $this->Form->control('nom_emprunteur_int', [
'options' => $nom_emprunteur_int,
'empty' => 'Tous',
'label' => 'Nom de l\'emprunteur'
]);
echo $this->Form->control('site', [
'label' => 'Site',
'empty' => 'Tous',
'options' => $s_site
]);
echo $this->Form->control('e_lieu_detail', [
'label' => 'Pièce',
'empty' => 'Tous',
'options' => $s_e_lieu_detail
]);
echo '
';
// EMPRUNT EXTERNE
echo '
';
echo $this->Form->control('nom_emprunteur_ext', [
'label' => 'Nom de l\'emprunteur',
'options' => $nom_emprunteur_ext,
'empty' => 'Tous'
]);
echo $this->Form->control('laboratoire', [
'label' => 'Lieu',
'options' => $s_laboratoire,
'empty' => 'Tous'
]);
echo '
';
// -------Bouton recherche Bas---------
//echo $this->Form->submit('Rechercher', [ 'style' => 'width: 20%']);
echo $this->Form->button('Rechercher', ['class'=>'btn btn-outline-success', 'type'=>'submit', 'style' => 'margin: 0px;']);
echo '
';
?>
>
request->getSession()->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($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa && $emprunt->groupes_metier_id == $priviledgedUser->groupes_metier_id) || (isset($priviledgedUser->groupes_thematique_id) && $priviledgedUser->groupes_thematique_id != $idGtNa && $emprunt->groupes_thematique_id == $priviledgedUser->groupes_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.';
}
?>