Blame view

src/Template/Materiels/edit.ctp 7.84 KB
19798ef9   Alexandre   Mode_install, maj...
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
<?php 
define ( 'IS_CREATED', $materiel->status == 'CREATED' );
define ( 'IS_VALIDATED', $materiel->status == 'VALIDATED' );
define ( 'IS_ARCHIVED_OR_TOBE', in_array ( $materiel->status, ['TOBEARCHIVED','ARCHIVED'] ) );

function isReadonlyField($fieldName, $myReadonlyFields) {
	if (! empty ( $myReadonlyFields ) && $myReadonlyFields [0] == '*') {
		$modifiableFields = $myReadonlyFields;
		array_shift ( $modifiableFields );
		return ! in_array ( $fieldName, $modifiableFields );
	}
	return in_array ( $fieldName, $myReadonlyFields );
}

$administrationData = array (
		'eotp',
		'numero_commande',
		'code_comptable',
		'numero_inventaire_organisme',
		'numero_inventaire_old' 
);

$myReadonlyFields = array ();
if (IS_VALIDATED)
	// can only modify some fields
	$myReadonlyFields = array_merge (
			array (
					'sur_categorie_id',
					'categorie_id',
					'sous_categorie_id',
					'materiel_administratif',
					'materiel_technique',
					'site_id',
					'date_acquisition',
					'date_reception',
					'nom_responsable',
					'fournisseur',
					'organisme_id',
					'prix_ht'
			),
			$administrationData
			);

	elseif (IS_ARCHIVED_OR_TOBE) {
		$myReadonlyFields = array ('*','status');
	}
?>



<div class="materiels form">
6c4edfa3   Alexandre   First Commit LabI...
52
53
    <?= $this->Form->create($materiel) ?>
    <fieldset>
19798ef9   Alexandre   Mode_install, maj...
54
55
56
        <h2><i class="icon-edit"></i> Editer un Matériel</h2>
        <?= $this->Form->button(__('Enregistrer')) ?>
       
6c4edfa3   Alexandre   First Commit LabI...
57
        <?php
19798ef9   Alexandre   Mode_install, maj...
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
        echo $this->Form->input('designation', [
        		'label' => 'Désignation',
        		'disabled' => isReadonlyField('designation', $myReadonlyFields)
        		
        ]);
        
        echo $this->Form->input('sur_categorie_id', [
        		'label' => 'Domaine', 
        		'options' => $surCategories, 
        		'empty' => 'Choisir un domaine',
        		'readonly' => isReadonlyField ( 'sur_categorie_id', $myReadonlyFields ),
        		'disabled' => isReadonlyField ( 'sur_categorie_id', $myReadonlyFields )
        		
        ]);
        echo $this->Form->input('categorie_id', [
        		'label' => 'Catégorie', 
        		'options' => $categories, 
        		'empty' => 'Choisir une catégorie',
        		'disabled' => isReadonlyField('categorie_id', $myReadonlyFields)
        ]);
        echo $this->Form->input('sous_categorie_id', [
        		'label' => 'Sous-catégorie', 
        		'options' => $sousCategories, 
        		'empty' => 'Choisir une sous-catégorie',
        		'disabled' => isReadonlyField('sous_categorie_id', $myReadonlyFields)
        ]);
        
        echo $this->Form->input('materiel_technique', [
        		'label' => 'Technique',
        		'disabled' => isReadonlyField('materiel_technique', $myReadonlyFields)
        ]);
        echo $this->Form->input('materiel_administratif', [
        		'label' => 'Inventoriable (>800€)',
        		'disabled' => isReadonlyField('materiel_administratif', $myReadonlyFields)
        ]);
        
        echo $this->Form->input('description', [
        		'label' => 'Description',
        		'disabled' => isReadonlyField('description', $myReadonlyFields)
        ]);
		echo $this->Form->input('etiquette', [
				'label' => 'Etiquette posée',
				'disabled' => isReadonlyField('etiquette', $myReadonlyFields)
		]);
        echo $this->Form->input('site_id', [
        		'options' => $sites, 
        		'empty' => 'Choisir un site',
        		'disabled' => isReadonlyField('site_id', $myReadonlyFields)
        ]);
        
		echo $this->Form->input('lieu_stockage', ['label' => 'Lieu de stockage (pièce)']);
		echo $this->Form->input('lieu_detail', ['label' => 'Détail lieu de stockage']);
		
        echo $this->Form->input('date_acquisition', [
        		'type' => 'text', 
        		'label' => 'Date de la commande', 
        		'class' => 'datepicker', 
        		'placeholder' => 'Cliquez pour sélectionner une date',
        		'disabled' => isReadonlyField('date_acquisition', $myReadonlyFields),
        ]);
        echo $this->Form->input('date_reception', [
        		'type' => 'text', 
        		'label' => 'Date de réception', 
        		'class' => 'datepicker', 
        		'placeholder' => 'A éditer lors de la réception uniquement.', 
        		'disabled' => isReadonlyField('date_reception', $myReadonlyFields),
        		'empty' => true]);
        
        echo $this->Form->input('status', ['label' => 'Statut', 'options' => [
					'CREATED' => 'CREATED',
					'VALIDATED' => 'VALIDATED',
					'TOBEARCHIVED' => 'TOBEARCHIVED',
					'ARCHIVED' => 'ARCHIVED']]);
        
        echo $this->Form->input('numero_serie', [
        		'label' => 'Numéro de série',
        		'disabled' => isReadonlyField('numero_serie', $myReadonlyFields)
        ]);
        echo $this->Form->input('groupes_thematique_id', [
        		'label' => 'Groupe thématique', 
        		'disabled' => isReadonlyField('groupes_thematique_id', $myReadonlyFields),
        		'options' => $groupesThematiques]);
        echo $this->Form->input('groupes_metier_id', [
        		'label' => 'Groupe métier', 
        		'disabled' => isReadonlyField('groupes_metier_id', $myReadonlyFields),
        		'options' => $groupesMetiers]);
        
        
        echo $this->Form->input('nom_responsable', [
        		'label' => 'Nom du responsable',
        		'disabled' => isReadonlyField('nom_responsable', $myReadonlyFields),
        		'empty' => 'Choisir un utilisateur',
        		'default' => $username,
        		'options' => $utilisateurs
        ]);
        if(isset($nom_ancien_responsable)){
        	echo $this->Form->input ('nom_ancien_responsable', [
        		'label' => 'Nom ancien responsable',
        		'readonly' => true,
        		'default' => $nom_ancien_responsable
        	]);
        }
        echo $this->Form->input('email_responsable', [
        		'label' => 'Email du responsable', 
        		'readonly' => true,
        		'default' => $mail_responsable
        ]);
       
        
        echo $this->Form->input('fournisseur', [
        		'label' => 'Fournisseur',
        		'disabled' => isReadonlyField('email_responsable', $myReadonlyFields)
        ]);
        echo $this->Form->input('organisme_id', [
        		'options' => $organismes, 
        		'disabled' => isReadonlyField('organisme_id', $myReadonlyFields),
        		'empty' => 'Choisir un organisme'
        ]);
        echo $this->Form->input('prix_ht', [
        		'label' => 'Prix HT (€)', 
        		'disabled' => isReadonlyField('prix_ht', $myReadonlyFields)
        ]);
       
        
        echo '<div style="border-top: 1px solid #CCC; border-bottom: 1px solid #CCC; margin-bottom: 0; background: #EEE;"><span style="font-size: 9px; color: red;">Partie administrative</span>';
        echo $this->Form->input('eotp', [
        		'label' => 'Centre financier/EOTP',
        		'disabled' => isReadonlyField('eotp', $myReadonlyFields)
        ]);
        echo $this->Form->input('numero_commande', [
        		'label' => 'Numéro de commande',
        		'disabled' => isReadonlyField('numero_commande', $myReadonlyFields)
        ]);
        echo $this->Form->input('code_comptable', [
        		'label' => 'Code comptable',
        		'disabled' => isReadonlyField('code_comptable', $myReadonlyFields)
        ]);
        echo $this->Form->input('numero_inventaire_organisme', [
        		'label' => 'N° inventaire organisme',
        		'disabled' => isReadonlyField('numero_inventaire_organisme', $myReadonlyFields)
        ]);
        echo $this->Form->input('numero_inventaire_old', [
        		'label' => 'Ancien N° inventaire',
        		'disabled' => isReadonlyField('numero_inventaire_old', $myReadonlyFields)
        ]);
        echo $this->Form->hidden('nom_modificateur', ['value' => $username ]);
        echo '</div>';
        
6c4edfa3   Alexandre   First Commit LabI...
206
207
        ?>
    </fieldset>
19798ef9   Alexandre   Mode_install, maj...
208
    <?= $this->Form->button(__('Enregistrer')) ?>
6c4edfa3   Alexandre   First Commit LabI...
209
210
    <?= $this->Form->end() ?>
</div>
19798ef9   Alexandre   Mode_install, maj...
211
212
213
214
215
216
217

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