Recherche de suivi
style="font-size: 14px;" id="i_filter"> Filtres
> ''
];
// FORMULAIRE DE RECHERCHE
echo $this->Form->create();
echo $this->Form->input ('s_statut', [
'label' => 'Statut',
'empty' => 'Tous',
'options' => ['En cours' => 'En cours', 'Terminé' => 'Terminé'],
]);
// Type suivi
echo $this->Form->input ( 's_type_suivi_id', [
'label' => 'Type de suivi',
'empty' => 'Tous',
$selected,
'options' => $s_type_suivis->find('list', [ 'keyField' => 'id', 'valueField' => 'nom', 'order' => 'TypeSuivis.nom']),
'style' => 'width: 200px'
]);
// Groupe metier et thematique
echo $this->Form->input ( 's_groupes_metier_id', [
'label' => $configuration->nom_groupe_metier,
'empty' => 'Tous',
$selected,
'options' => $s_groupes_metiers,
'style' => 'width: 200px'
]);
echo $this->Form->input ( 's_groupes_thematique_id', [
'label' => $configuration->nom_groupe_thematique,
'empty' => 'Tous',
$selected,
'options' => $s_groupes_thematiques,
'style' => 'width: 200px'
]);
echo $this->Form->input ( 's_organisme', [
'label' => 'Nom du prestataire'
]);
// Date intervention
echo "DATE d'intervention:";
echo $this->Form->input ( 's_date_controle', [
'placeholder' => 'Cliquez pour selectionner une date',
'label' => '- Date exacte',
'class' => 'datepicker'
]);
echo $this->Form->input ( 's_periode_controle1', [
'placeholder' => 'Cliquez pour selectionner une date',
'label' => '- Date Début',
'class' => 'datepicker'
]);
echo $this->Form->input ( 's_periode_controle2', [
'placeholder' => 'Cliquez pour selectionner une date',
'label' => '- Date Fin',
'class' => 'datepicker'
]);
// -------Bouton recherche Bas---------
echo $this->Form->submit('Rechercher', ['style' => 'width: 20%']);
echo '
';
?>
style="font-size: 14px;" id="i_result"> Résultats
>
request->session()->write("resultTri", $_results);
?>
= __('') ?> |
= $this->Paginator->sort('id', 'N°') ?> |
= $this->Paginator->sort('materiel', 'Matériel') ?> |
= $this->Paginator->sort('materiel', 'N° interne (labo)') ?> |
= $this->Paginator->sort('intitule', "Intitulé") ?> |
= $this->Paginator->sort('date_controle', 'Date intervention') ?> |
= $this->Paginator->sort('date_prochain_controle', 'Date prochaine intervention') ?> |
= $this->Paginator->sort('type_suivi_id', "Type d'intervention") ?> |
= $this->Paginator->sort('statut', "Statut") ?> |
';
$mat = $materiels->find()->where(['id =' => $suivi->materiel_id])->first();
?>
nom_createur])) || (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur']))
|| ($role == 'Responsable' &&
((isset($userConnected->groupes_metier_id) && $userConnected->groupes_metier_id != $idGmNa && $suivi->groupes_metier_id == $userConnected->groupes_metier_id)
||(isset($userConnected->groupe_thematique_id) && $userConnected->groupe_thematique_id != $idGtNa && $suivi->groupes_thematique_id == $userConnected->groupe_thematique_id)))) {
echo $this->Html->link(__(''), ['action' => 'edit', $suivi->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]);
echo $this->Form->postLink(__(''), ['action' => 'delete', $suivi->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $suivi->id)]);
echo ' | ';
}
?>
Html->link('Suivi '.$this->Number->format($suivi->id), ['action' => 'view', $suivi->id])?> |
= $this->Html->link($mat['designation'], ['controller' => 'Materiels', 'action' => 'view', $mat['id']])?> |
= $mat['numero_laboratoire'] ?> |
= h($suivi->intitule) ?> |
= h($suivi->date_controle) ?> |
= h($suivi->date_prochain_controle) ?> |
= $s_type_suivis->find()->where(['id =' => h($suivi->type_suivi_id)])->first()['nom'] ?> |
= h($suivi->statut) ?> |
';
endforeach;
echo '';
echo '
';
} else {
echo 'Aucun résultats pour cette recherche.';
}
?>
Form->end();
?>