Blame view

src/Template/Suivis/edit.ctp 2.09 KB
64fba1a2   Alexandre   Base du projet : ...
1

19798ef9   Alexandre   Mode_install, maj...
2
<div class="suivis form">
6c4edfa3   Alexandre   First Commit LabI...
3
4
    <?= $this->Form->create($suivi) ?>
    <fieldset>
19798ef9   Alexandre   Mode_install, maj...
5
        <h2><i class="icon-edit"></i> Editer un suivi</h2>
6c4edfa3   Alexandre   First Commit LabI...
6
        <?php
19798ef9   Alexandre   Mode_install, maj...
7
8
9
10
11
12
13
14
15
        
        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
        ]);
        
ebe38bef   Alexandre   #3586 Ajout assoc...
16
        echo $this->Form->input('type_suivi_id', [
19798ef9   Alexandre   Mode_install, maj...
17
18
19
20
21
22
23
24
25
26
27
28
29
30
        		'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', [
19798ef9   Alexandre   Mode_install, maj...
31
			'type' => 'text',
f2f98fff   Alexandre   Version: 2.2.5.2
32
			'id' => 'SuiviFrequence',
19798ef9   Alexandre   Mode_install, maj...
33
			'label' => 'Fréquence',
f2f98fff   Alexandre   Version: 2.2.5.2
34
			'templates' => ['inputContainer' => '<div class="A">{{content}}</div>'],
19798ef9   Alexandre   Mode_install, maj...
35
36
37
38
39
			'placeholder' => ''
		]);
		echo '</td><td>';
		echo $this->Form->input ('type_frequence', [
			'label' => false,
f2f98fff   Alexandre   Version: 2.2.5.2
40
			'templates' => ['inputContainer' => '<div class="typeFrequence">{{content}}</div>'],
19798ef9   Alexandre   Mode_install, maj...
41
42
43
44
45
46
47
48
49
50
51
52
53
54
			'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 ]);
6c4edfa3   Alexandre   First Commit LabI...
55
56
        ?>
    </fieldset>
0e5846aa   Alexandre   Css bouton valide...
57
    <?= $this->Form->submit(__('Valider')) ?>
6c4edfa3   Alexandre   First Commit LabI...
58
59
    <?= $this->Form->end() ?>
</div>
19798ef9   Alexandre   Mode_install, maj...
60
61
62
63
64
65
66

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