Form->create($suivi)?>

Editer un suivi

Form->hidden('materiel_id', [ 'options' => $materiels, 'default' => $suivi->get('materiel_id') ]); echo $this->Form->control('materiel_numero_laboratoire', [ 'label' => 'N° materiel labo', 'default' => $materiel['numero_laboratoire'], 'disabled' => TRUE ]); echo $this->Form->control('type_suivi_id', [ 'label' => 'Type d\'intervention', 'options' => $typeSuivis, 'disabled' => TRUE ]); //Affiche les bonnes informations en fonction du type de suivi //Améliorable avec une requete pour fonctionner avec el nom de suivi et pas l'id //Améliorable avec un switch if ($suivi->type_suivi_id == 2 ) { echo $this->Form->control('date_controle', [ 'type' => 'text', 'id' => 'date_deb', 'label' => 'Date de la prise en charge', 'class' => 'datepicker', 'placeholder' => 'Cliquez pour sélectionner une date', 'disabled' => true ]); echo $this->Form->control('date_prochain_controle', [ 'type' => 'text', 'id' => 'date_fin', 'label' => 'Date estimee de fin', 'class' => 'datepicker', 'placeholder' => 'Cliquez pour sélectionner une date' ]); }else{ echo '
'; echo $this->Form->control('frequence', [ 'type' => 'text', 'id' => 'SuiviFrequence', 'label' => 'Fréquence', 'disabled' => true, 'templates' => [ 'inputContainer' => '
{{content}}
' ], 'placeholder' => '' ]); echo '
'; echo $this->Form->control('type_frequence', [ 'label' => false, 'disabled' => true, 'templates' => [ 'inputContainer' => '
{{content}}
' ], 'options' => [ '/ Jours' => '/ Jours', '/ Semaines' => '/ Semaines', '/ Mois' => '/ Mois', '/ Ans' => '/ Ans' ], 'default' => '/ Mois' ]); echo '
'; } echo $this->Form->control('statut', [ 'options' => [ 'En cours' => 'En cours', 'Terminé' => 'Terminé' ] ]); echo $this->Form->control('organisme', [ 'label' => 'Prestataire' ]); echo $this->Form->control('groupes_thematique_id', [ 'label' => $configuration->nom_groupe_thematique, 'options' => $groupesThematiques, 'default' => $materiel['groupes_thematique_id'] ]); echo $this->Form->control('groupes_metier_id', [ 'label' => $configuration->nom_groupe_metier, 'options' => $groupesMetiers, 'default' => $materiel['groupes_metier_id'] ]); echo $this->Form->control('intitule', [ 'label' => 'Intitulé' ]); echo ''; echo ''; echo $this->Form->control('commentaire', [ 'type' => 'textarea' ]); echo $this->Form->hidden('nom_modificateur', [ 'value' => $username ]); ?>
Form->submit(__('Enregistrer'))?> Form->end()?>
element('menu'); echo $this->element('menu_form', [ 'pluralHumanName' => 'Suivis' ]); ?>