add.ctp
1.94 KB
1
2
3
4
5
6
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
54
55
56
57
58
59
60
61
62
63
64
65
<div class="suivis form">
<?= $this->Form->create($suivi) ?>
<fieldset>
<h2><i class="icon-plus"></i> Ajouter un suivi</h2>
<?php
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 ]);
?>
</fieldset>
<?= $this->Form->button(__('Valider')) ?>
<?= $this->Form->end() ?>
</div>
<div class="actions">
<?php
echo $this->element('menu');
echo $this->element('menu_form', [ 'pluralHumanName' => 'Suivis' ]);
?>
</div>