Recherche d'emprunt

style="font-size: 14px;" id="i_filter"> Filtres

> '' ]; // 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 ''; // 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 '


'; ?>

style="font-size: 14px;" id="i_result"> Résultats

> request->getSession()->write("resultTri", $_results); ?> '; $mat = $materiels->find() ->where([ 'id =' => $emprunt->materiel_id ]) ->first(); $sit = $sites->find() ->where([ 'id =' => $emprunt->site_id ]) ->first(); ?> '; } // $this->Html->link($site['nom'],['controller' => 'Sites', 'action' =>'view', $sit['id']]) ?> '; endforeach ; echo ''; echo '
Paginator->sort('id', 'N°') ?> Paginator->sort('designation', 'Materiels') ?> Paginator->sort('emprunt_interne', 'Interne') ?> Paginator->sort('laboratoire', 'Laboratoire') ?> Paginator->sort('e_lieu_detail', 'Piece') ?> Paginator->sort('site', 'Site') ?> Paginator->sort('date_emprunt', 'Date d\'emprunt') ?> Paginator->sort('date_retour_emprunt', 'Date de retour') ?> Paginator->sort('nom_emprunteur', "Nom emprunteur") ?>
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 ' Html->link('Emprunt '.$this->Number->format($emprunt->id), ['action' => 'view', $emprunt->id])?> Html->link($mat['designation'], ['controller' => 'Materiels', 'action' => 'view', $mat['id']])?> emprunt_interne) == true ? "Y" : "N" ; ?> laboratoire) ?> e_lieu_detail) ?> Html->link($sit['nom'],['controller' => 'Sites', 'action' =>'view', $sit['id']]) ?> date_emprunt) ?> date_retour_emprunt) ?> nom_emprunteur) ?>
'; } else { echo 'Aucun résultats pour cette recherche.'; } ?>
Form->end(); /* * */ ?>