Blame view

src/Template/Suivis/add.ctp 1.94 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-plus"></i> Ajouter un suivi</h2>
6c4edfa3   Alexandre   First Commit LabI...
6
        <?php
19798ef9   Alexandre   Mode_install, maj...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
        echo $this->Form->hidden('materiel_id', ['options' => $materiels, 'default' => $this->passedArgs[0]]);
        
        echo $this->Form->input ('materiel_numero_laboratoire', [
        		'label' => 'N° materiel labo',
        		'default' => $numMateriel,
        		'disabled' => TRUE
        ]);
        
        
        echo $this->Form->input('type_intervention', [
        		'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', [
			'div' => 'A',
			'type' => 'text',
			'label' => 'Fréquence',
			'placeholder' => ''
		]);
		echo '</td><td>';
		echo $this->Form->input ('type_frequence', [
			'label' => false,
			'div' => 'typeFrequence',
			'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_createur', ['value' => $username ]);
6c4edfa3   Alexandre   First Commit LabI...
54
55
        ?>
    </fieldset>
19798ef9   Alexandre   Mode_install, maj...
56
    <?= $this->Form->button(__('Valider')) ?>
6c4edfa3   Alexandre   First Commit LabI...
57
58
    <?= $this->Form->end() ?>
</div>
19798ef9   Alexandre   Mode_install, maj...
59
60
61
62
63
64
65

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