edit.ctp 2.09 KB

<div class="suivis form">
    <?= $this->Form->create($suivi) ?>
    <fieldset>
        <h2><i class="icon-edit"></i> Editer un suivi</h2>
        <?php
        
        echo $this->Form->hidden('materiel_id', ['options' => $materiels, 'default' => $suivi->get('materiel_id')]);
        
        echo $this->Form->input ('materiel_numero_laboratoire', [
        		'label' => 'N° materiel labo',
        		'default' => $numMateriel,
        		'disabled' => TRUE
        ]);
        
        echo $this->Form->input('type_suivi_id', [
        		'label' => 'Type d\'intervention',
        		'options' => $typeSuivis
        ]);
        
        echo $this->Form->input('date_controle', [
			'type' => 'text',
			'label' => 'Date intervention',
			'placeholder' => 'Cliquez pour selectionner une date',
			'class' => 'datepicker',
			'default' => NULL
        ]);

        echo '<table id="tableAlignementFrequence"><tr><td>';
		echo $this->Form->input('frequence', [
			'type' => 'text',
			'id' => 'SuiviFrequence',
			'label' => 'Fréquence',
			'templates' => ['inputContainer' => '<div class="A">{{content}}</div>'],
			'placeholder' => ''
		]);
		echo '</td><td>';
		echo $this->Form->input ('type_frequence', [
			'label' => false,
			'templates' => ['inputContainer' => '<div class="typeFrequence">{{content}}</div>'],
			'options' => ['/ Jours', '/ Semaines', '/ Mois', '/ Ans']
		]);
		echo '</td></tr></table>';
        
        echo $this->Form->input('date_prochain_controle', [
        	'type' => 'text',
			'label' => 'Date prochaine intervention',
			'placeholder' => 'Cliquez pour selectionner une date',
			'class' => 'datepicker'		
        ]);
        echo $this->Form->input('organisme', ['label' => 'Prestataire']);
        echo $this->Form->input('commentaire', ['type' => 'textarea']);

        echo $this->Form->hidden('nom_modificateur', ['value' => $username ]);
        ?>
    </fieldset>
    <?= $this->Form->submit(__('Valider')) ?>
    <?= $this->Form->end() ?>
</div>

<div class="actions">
	<?php 
		echo $this->element('menu');
		echo $this->element('menu_form', [ 'pluralHumanName' => 'Suivis' ]);
	?>
</div>