Blame view

src/Template/Materiels/edit.ctp 17.8 KB
c1cbc061   Thibaud Ajas   Bugfixes, correct...
1
<?php
82721df2   Thibaud Ajas   Modif des mails g...
2
use Cake\ORM\TableRegistry;
93ddd72e   Etienne Pallier   Materiels/edit :
3

63c3cb16   epallier   Nombreux petits b...
4
5
6
7
$USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER = $USER_IS_UTILISATEUR && in_array($username, [
    $materiel->nom_createur,
    $materiel->nom_responsable
]);
93ddd72e   Etienne Pallier   Materiels/edit :
8

63c3cb16   epallier   Nombreux petits b...
9
$USER_IS_RESPONSABLE_AND_SAME_GROUP = $USER_IS_RESPONSABLE && ((isset($priviledgedUser->groupes_metier_id) && $materiel->groupes_metier_id == $priviledgedUser->groupes_metier_id) || (isset($priviledgedUser->groupe_thematique_id) && $materiel->groupes_thematique_id == $priviledgedUser->groupe_thematique_id));
93ddd72e   Etienne Pallier   Materiels/edit :
10

2389dbd8   Thibaud Ajas   bugfixes lies au ...
11
12
13
14
15
16
$administrationData = array(
    'eotp',
    'numero_commande',
    'code_comptable',
    'numero_inventaire_organisme',
    'numero_inventaire_old'
19798ef9   Alexandre   Mode_install, maj...
17
);
2389dbd8   Thibaud Ajas   bugfixes lies au ...
18
$myReadonlyFields = array();
04a6b875   Alexandre   Version: 2.4.2.0
19
if ($IS_VALIDATED)
2389dbd8   Thibaud Ajas   bugfixes lies au ...
20
21
22
23
    // can only modify some fields
    $myReadonlyFields = array_merge(array(
        'sur_categorie_id',
        'categorie_id',
2389dbd8   Thibaud Ajas   bugfixes lies au ...
24
25
26
27
28
29
30
        'materiel_administratif',
        'materiel_technique',
        'site_id',
        'date_acquisition',
        'date_reception',
        'organisme_id',
        'prix_ht',
e7797d3d   Thibaud Ajas   fin des bugfixes ...
31
32
        'gestionnaire_id',
        'nom_responsable'
2389dbd8   Thibaud Ajas   bugfixes lies au ...
33
34
35
36
37
38
39
    ), $administrationData);
else if ($IS_ARCHIVED_OR_TOBE) {
    $myReadonlyFields = array(
        '*',
        'status'
    );
}
e7797d3d   Thibaud Ajas   fin des bugfixes ...
40
41
42
43
44
45
46
47
if ($IS_VALIDATED && $materiel->sous_categorie_id)
    $myReadonlyFields = array_merge(array(
        'sous_categorie_id'
    ), $myReadonlyFields);
if ($IS_VALIDATED && $materiel->numero_serie)
    $myReadonlyFields = array_merge(array(
        'numero_serie'
    ), $myReadonlyFields);
19798ef9   Alexandre   Mode_install, maj...
48
?>
19798ef9   Alexandre   Mode_install, maj...
49

19798ef9   Alexandre   Mode_install, maj...
50
<div class="materiels form">
2389dbd8   Thibaud Ajas   bugfixes lies au ...
51
    <?=$this->Form->create($materiel)?>
6c4edfa3   Alexandre   First Commit LabI...
52
    <fieldset>
c1cbc061   Thibaud Ajas   Bugfixes, correct...
53

63c3cb16   epallier   Nombreux petits b...
54
55
56
		<h2>
			<i class="icon-edit"></i> Editer un Matériel
		</h2>
1f7e0355   Alexandre   Version: 2.4.2.4
57

2389dbd8   Thibaud Ajas   bugfixes lies au ...
58
        <?php
63c3cb16   epallier   Nombreux petits b...
59
        // if ($role == 'Super Administrateur') {
93ddd72e   Etienne Pallier   Materiels/edit :
60
        if ($USER_IS_SUPERADMIN) {
63c3cb16   epallier   Nombreux petits b...
61
            echo $this->Html->link('Aller au formulaire d\'édition avancée', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
62
63
64
65
66
                'action' => 'administrer',
                $materiel->id
            ]);
            echo '<br><br>';
        }
6f74ba5c   Alexandre   Version: 2.5.3.0
67
        ?>
f8c5c958   Etienne Pallier   Plusieurs amelior...
68

63c3cb16   epallier   Nombreux petits b...
69
70
        <div id="boutons" class="actions"
			style="margin-bottom: 20px; width: 100%; float: none; padding: 10px 0;">
2389dbd8   Thibaud Ajas   bugfixes lies au ...
71
        <?=$this->Form->submit(__('Enregistrer'))?>
f8c5c958   Etienne Pallier   Plusieurs amelior...
72
        
63c3cb16   epallier   Nombreux petits b...
73
        <?=$this->Html->link(__('<i class="icon-minus-sign"></i> Annuler'), ['action' => 'index'], ['escape' => false,'onclick' => 'return true;','style' => 'margin-right: 10px'])?>
f8c5c958   Etienne Pallier   Plusieurs amelior...
74
        </div>
94e21fe8   Alexandre   Version: 2.4.6.9
75

6c4edfa3   Alexandre   First Commit LabI...
76
        <?php
e61b448a   Thibaud Ajas   bugfixes
77
78
79
80
        echo $this->Form->input('designation', [
            'label' => 'Désignation',
            'disabled' => $isReadonlyField('designation', $myReadonlyFields)
        ]);
63c3cb16   epallier   Nombreux petits b...
81
82
83
84
85
86
87
88
89
90
91
92
        if ($USER_IS_ADMIN_OR_MORE || $USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP) {
            /*
             * if (in_array($role, [
             * 'Administration',
             * 'Administration Plus',
             * 'Super Administrateur'
             * ]) || ($role == 'Utilisateur' && (in_array($username, [
             * $materiel->nom_createur,
             * $materiel->nom_responsable
             * ]))) || ($role == 'Responsable' && ($materiel->groupes_metier_id == $priviledgedUser->groupes_metier_id ||
             * $materiel->groupes_thematique_id == $priviledgedUser->groupe_thematique_id))) {
             */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
93
94
95
            echo $this->Form->input('hors_service', [
                'label' => 'Appareil hors_service'
            ]);
302307ec   Alexandre   Version: 2.4.7.0
96
        }
19798ef9   Alexandre   Mode_install, maj...
97
        echo $this->Form->input('sur_categorie_id', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
98
99
100
101
102
103
            'label' => 'Domaine',
            'options' => $surCategories,
            'empty' => 'Choisir un domaine',
            'style' => 'width: 260px',
            'readonly' => $isReadonlyField('sur_categorie_id', $myReadonlyFields),
            'disabled' => $isReadonlyField('sur_categorie_id', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
104
        ]);
a97b5772   Alexandre   Migration fonctio...
105
        $categs = $categories;
cc91ed53   epallier   Nombreux bugfixes :
106
107
108
        // if a domain is selected, reduce the categories list to this domain
        //if ($this->request->getData('sur_categorie_id') !== null && ($this->request->getData('sur_categorie_id') != ''))
        if ($materiel->sur_categorie_id !== null && $materiel->sur_categorie_id != '')
63c3cb16   epallier   Nombreux petits b...
109
            $categs = $categs->where([
cc91ed53   epallier   Nombreux bugfixes :
110
            'sur_categorie_id =' => $materiel->sur_categorie_id
63c3cb16   epallier   Nombreux petits b...
111
            ]);
19798ef9   Alexandre   Mode_install, maj...
112
        echo $this->Form->input('categorie_id', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
113
114
115
116
117
            'label' => 'Catégorie',
            'style' => 'width: 380px',
            'options' => $categs,
            'empty' => 'Choisir une catégorie',
            'disabled' => $isReadonlyField('categorie_id', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
118
        ]);
a97b5772   Alexandre   Migration fonctio...
119
120
121
122
        // SOUS-CATEGORIES
        // by default, list is empty
        $souscategs = [];
        // if a categ is selected, update sous-categs list for this categ (only)
cc91ed53   epallier   Nombreux bugfixes :
123
124
        //if ($this->request->getData('categorie_id') !== null && ($this->request->getData('categorie_id') != '')) {
        if ($materiel->categorie_id !== null && $materiel->categorie_id != '') {
2389dbd8   Thibaud Ajas   bugfixes lies au ...
125
126
            $souscategs = $sousCategories;
            $souscategs = $souscategs->where([
cc91ed53   epallier   Nombreux bugfixes :
127
128
                //'categorie_id' => $this->request->getData('categorie_id')
                'categorie_id' => $materiel->categorie_id
2389dbd8   Thibaud Ajas   bugfixes lies au ...
129
            ]);
a97b5772   Alexandre   Migration fonctio...
130
        }
19798ef9   Alexandre   Mode_install, maj...
131
        echo $this->Form->input('sous_categorie_id', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
132
133
134
135
136
            'label' => 'Sous-catégorie',
            'style' => 'width: 380px',
            'options' => $souscategs,
            'empty' => 'Choisir une sous-catégorie',
            'disabled' => $isReadonlyField('sous_categorie_id', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
137
        ]);
cc91ed53   epallier   Nombreux bugfixes :
138
        
19798ef9   Alexandre   Mode_install, maj...
139
        echo $this->Form->input('materiel_technique', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
140
141
            'label' => 'Technique',
            'disabled' => $isReadonlyField('materiel_technique', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
142
143
        ]);
        echo $this->Form->input('materiel_administratif', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
144
145
            'label' => 'Inventoriable (>' . $configuration->prix_inventaire_administratif . '€)',
            'disabled' => $isReadonlyField('materiel_administratif', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
146
        ]);
2389dbd8   Thibaud Ajas   bugfixes lies au ...
147
148
149
150
151
152
153
        if ($configuration->metrologie == '1') {
            echo "<div id=\"metro\" > ";
            echo $this->Form->input('metrologie', [
                'label' => 'Suivi en métrologie'
            ]);
            echo "</div>";
        }
19798ef9   Alexandre   Mode_install, maj...
154
        echo $this->Form->input('description', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
155
156
            'label' => 'Description',
            'disabled' => $isReadonlyField('description', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
157
        ]);
93ddd72e   Etienne Pallier   Materiels/edit :
158
        if ($USER_IS_RESPONSABLE_OR_MORE) {
63c3cb16   epallier   Nombreux petits b...
159
160
161
162
163
164
165
166
            /*
             * if (in_array($role, [
             * 'Responsable',
             * 'Administration',
             * 'Administration Plus',
             * 'Super Administrateur'
             * ])) {
             */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
167
168
169
170
            echo $this->Form->input('etiquette', [
                'label' => 'Etiquette posée',
                'disabled' => $isReadonlyField('etiquette', $myReadonlyFields)
            ]);
04a6b875   Alexandre   Version: 2.4.2.0
171
        }
19798ef9   Alexandre   Mode_install, maj...
172
        echo $this->Form->input('site_id', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
173
174
175
176
            'options' => $sites,
            'style' => 'width: 380px',
            'default' => 9,
            'disabled' => $isReadonlyField('site_id', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
177
        ]);
2389dbd8   Thibaud Ajas   bugfixes lies au ...
178
179
180
181
182
        echo '<div class="input text"><label for="lieu-detail">Détail lieu de stockage</label><input list="lieu" id="lieu-detail" name="lieu_detail" value="' . array_shift($lieu_detail_edit) . '" type="text" placeholder="choisir/ajouter un lieu" autocomplete="off" ><datalist id="lieu">';
        foreach ($lieu_detail as $e) {
            echo "<option value=\"$e\">";
        }
        echo '</datalist> </div>';
19798ef9   Alexandre   Mode_install, maj...
183
        echo $this->Form->input('date_acquisition', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
184
185
186
187
188
            'type' => 'text',
            'label' => 'Date de la commande',
            'class' => 'datepicker',
            'placeholder' => 'Cliquez pour sélectionner une date',
            'disabled' => $isReadonlyField('date_acquisition', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
189
190
        ]);
        echo $this->Form->input('date_reception', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
191
192
193
194
195
196
197
            '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
        ]);
94e21fe8   Alexandre   Version: 2.4.6.9
198
199
        echo '<table id="tableAlignementFrequence"><tr><td>';
        echo $this->Form->input('duree_garantie', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
200
201
202
203
204
205
206
            'type' => 'text',
            'style' => 'width: 100px',
            'label' => 'Durée garantie',
            'templates' => [
                'inputContainer' => '<div class="A">{{content}}</div>'
            ],
            'placeholder' => ''
94e21fe8   Alexandre   Version: 2.4.6.9
207
208
        ]);
        echo '</td><td>';
2389dbd8   Thibaud Ajas   bugfixes lies au ...
209
210
211
212
213
214
215
216
217
218
        echo $this->Form->input('unite_duree_garantie', [
            'label' => false,
            'templates' => [
                'inputContainer' => '<div class="typeFrequence">{{content}}</div>'
            ],
            'options' => [
                'Mois' => 'Mois',
                'Ans' => 'Ans'
            ],
            'default' => 'Ans'
94e21fe8   Alexandre   Version: 2.4.6.9
219
220
221
        ]);
        echo '</td></tr></table>';
        echo $this->Form->input('date_fin_garantie', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
222
223
224
225
226
            'type' => 'text',
            'label' => 'Date fin de garantie',
            'placeholder' => 'Cliquez pour selectionner une date',
            'class' => 'datepicker',
            'default' => NULL
94e21fe8   Alexandre   Version: 2.4.6.9
227
        ]);
93ddd72e   Etienne Pallier   Materiels/edit :
228
        if ($USER_IS_ADMINPLUS_OR_MORE) {
63c3cb16   epallier   Nombreux petits b...
229
230
231
232
233
234
            /*
             * if (in_array($role, [
             * 'Administration Plus',
             * 'Super Administrateur'
             * ])) {
             */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
235
236
237
238
239
240
241
242
243
            echo $this->Form->input('status', [
                'label' => 'Statut',
                'options' => [
                    'CREATED' => 'CREATED',
                    'VALIDATED' => 'VALIDATED',
                    'TOBEARCHIVED' => 'TOBEARCHIVED',
                    'ARCHIVED' => 'ARCHIVED'
                ]
            ]);
04a6b875   Alexandre   Version: 2.4.2.0
244
        }
19798ef9   Alexandre   Mode_install, maj...
245
        echo $this->Form->input('numero_serie', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
246
247
            'label' => 'Numéro de série',
            'disabled' => $isReadonlyField('numero_serie', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
248
249
        ]);
        echo $this->Form->input('groupes_thematique_id', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
250
251
252
253
254
            'label' => $configuration->nom_groupe_thematique,
            'disabled' => $isReadonlyField('groupes_thematique_id', $myReadonlyFields),
            'options' => $groupesThematiques,
            'default' => 1
        ]);
19798ef9   Alexandre   Mode_install, maj...
255
        echo $this->Form->input('groupes_metier_id', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
256
257
258
259
            'label' => $configuration->nom_groupe_metier,
            'disabled' => $isReadonlyField('groupes_metier_id', $myReadonlyFields),
            'options' => $groupesMetiers,
            'default' => 1
04a6b875   Alexandre   Version: 2.4.2.0
260
        ]);
93ddd72e   Etienne Pallier   Materiels/edit :
261
        
f8c5c958   Etienne Pallier   Plusieurs amelior...
262
263
264
265
266
267
268
269
270
        $fieldType = $USER_IS_UTILISATEUR ? 'hidden' : 'input';
        echo $this->Form->$fieldType('nom_responsable', [
            'label' => 'Nom de l\'utilisateur',
            'disabled' => $isReadonlyField('nom_responsable', $myReadonlyFields),
            'empty' => 'Choisir un utilisateur',
            'default' => $username,
            'options' => $utilisateurs
        ]);
        
2389dbd8   Thibaud Ajas   bugfixes lies au ...
271
272
        if (isset($nom_ancien_responsable)) {
            echo $this->Form->input('nom_ancien_responsable', [
a0fefb3d   Thibaud Ajas   bugfixes suite au...
273
                'label' => 'Nom ancien utilisateur',
2389dbd8   Thibaud Ajas   bugfixes lies au ...
274
275
276
                'readonly' => true,
                'default' => $nom_ancien_responsable
            ]);
19798ef9   Alexandre   Mode_install, maj...
277
278
        }
        echo $this->Form->input('email_responsable', [
a0fefb3d   Thibaud Ajas   bugfixes suite au...
279
            'label' => 'Email de l\'utilisateur',
2389dbd8   Thibaud Ajas   bugfixes lies au ...
280
281
            'readonly' => true,
            'default' => $mail_responsable
19798ef9   Alexandre   Mode_install, maj...
282
        ]);
2389dbd8   Thibaud Ajas   bugfixes lies au ...
283
284
285
286
287
288
289
290
291
292
293
294
295
296
        $res = TableRegistry::get('Users')->find()
            ->where([
            'username' => $username,
            'role' => 'Administration'
        ])
            ->first();
        $administrateurs = TableRegistry::get('Users')->find('list', [
            'keyField' => 'nom',
            'valueField' => 'nom'
        ])
            ->where([
            'role =' => 'Administration'
        ])
            ->toArray();
e7797d3d   Thibaud Ajas   fin des bugfixes ...
297
        echo $this->Form->input('gestionnaire_id', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
298
299
300
301
            'label' => 'Nom du gestionnaire de référence du matériel',
            'empty' => 'Choisir un gestionnaire',
            'default' => $_SESSION['Auth']['User']['sn'][0],
            'options' => $administrateurs
82721df2   Thibaud Ajas   Modif des mails g...
302
        ]);
5973ba4e   Alexis Proust   mise a jour fichier
303
        echo $this->Form->input('fournisseur_id', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
304
305
306
307
308
309
310
            'label' => 'Fournisseur',
            'options' => $fournisseurs,
            'style' => 'width: 380px',
            'empty' => 'choisir un fournisseur',
            'disabled' => in_array($role, [
                'Utilisateur'
            ])
19798ef9   Alexandre   Mode_install, maj...
311
        ]);
19798ef9   Alexandre   Mode_install, maj...
312
        echo $this->Form->input('organisme_id', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
313
314
315
316
            'options' => $organismes,
            'style' => 'width: 380px',
            'disabled' => $isReadonlyField('organisme_id', $myReadonlyFields),
            'empty' => 'Choisir un organisme'
19798ef9   Alexandre   Mode_install, maj...
317
318
        ]);
        echo $this->Form->input('prix_ht', [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
319
320
            'label' => 'Prix HT (€)',
            'disabled' => $isReadonlyField('prix_ht', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
321
        ]);
93ddd72e   Etienne Pallier   Materiels/edit :
322
        if ($USER_IS_ADMIN_OR_MORE) {
63c3cb16   epallier   Nombreux petits b...
323
324
325
326
327
328
329
            /*
             * if (in_array($role, [
             * 'Administration',
             * 'Administration Plus',
             * 'Super Administrateur'
             * ])) {
             */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
            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('adminEdit', [
                'type' => 'checkbox',
                'label' => 'Editer la partie administrative',
                'onchange' => 'changeAdminEdit();',
                'default' => false
            ]);
            echo $this->Form->input('eotp', [
                'label' => 'Centre financier/EOTP',
                'disabled' => true
            ]);
            echo $this->Form->input('numero_commande', [
                'label' => 'Numéro de commande',
                'disabled' => true
            ]);
            echo $this->Form->input('code_comptable', [
                'label' => 'Code comptable',
                'disabled' => true
            ]);
            echo $this->Form->input('numero_inventaire_organisme', [
                'label' => 'N° inventaire organisme',
                'disabled' => true
            ]);
            echo $this->Form->input('numero_inventaire_old', [
                'label' => 'Ancien N° inventaire',
                'disabled' => true
            ]);
            echo '</div>';
04a6b875   Alexandre   Version: 2.4.2.0
358
        }
2389dbd8   Thibaud Ajas   bugfixes lies au ...
359
360
361
        echo $this->Form->hidden('nom_modificateur', [
            'value' => $username
        ]);
6c4edfa3   Alexandre   First Commit LabI...
362
363
        ?>
    </fieldset>
2389dbd8   Thibaud Ajas   bugfixes lies au ...
364
365
    <?=$this->Form->submit(__('Enregistrer'))?>
    <?=$this->Form->end()?>
6c4edfa3   Alexandre   First Commit LabI...
366
</div>
19798ef9   Alexandre   Mode_install, maj...
367

19798ef9   Alexandre   Mode_install, maj...
368
<div class="actions">
447dc60e   Thibaud Ajas   resolution bug - ...
369
<?php
2389dbd8   Thibaud Ajas   bugfixes lies au ...
370
echo $this->element('menu');
63c3cb16   epallier   Nombreux petits b...
371
372
373
echo $this->element('menu_form', [
    'pluralHumanName' => 'Matériels'
]);
2389dbd8   Thibaud Ajas   bugfixes lies au ...
374
?>
19798ef9   Alexandre   Mode_install, maj...
375
</div>
19798ef9   Alexandre   Mode_install, maj...
376

447dc60e   Thibaud Ajas   resolution bug - ...
377
<?php
758a84af   Alexandre   Version: 2.2.4.0
378
/**
c1cbc061   Thibaud Ajas   Bugfixes, correct...
379
 * GESTION DES EVENEMENTS SUR LES DOMAINES/CATEGORIES/SOUS-CATEGORIES
758a84af   Alexandre   Version: 2.2.4.0
380
381
382
383
 * Phase initialisation (1ère ouverture de la page) :
 * - domaine ==> value = TOUS, select = "choisir" (ADD) ou data (EDIT)
 * - categ ==> value = TOUTES (ADD) ou from domaine (EDIT), select = "choisir" (ADD) ou data (EDIT)
 * - scateg ==> value = Aucune (ADD) ou from categ (EDIT), select = "choisir" (ADD) ou data (EDIT)
758a84af   Alexandre   Version: 2.2.4.0
384
385
386
 * Event domaine change :
 * - si select <> "choisir" ==> categ value = from domaine (select="choisir"), et vider scateg
 * - si select = "choisir" ==> categ value = TOUTES (select="choisir"), et vider scateg
758a84af   Alexandre   Version: 2.2.4.0
387
388
389
 * Event categ change :
 * - si select <> "choisir" ==> domaine select = from categ, et scateg values = from categ
 * - si select = "choisir" ==> vider scateg
758a84af   Alexandre   Version: 2.2.4.0
390
391
392
 * Event scateg change : RIEN A FAIRE
 */
?>
e7797d3d   Thibaud Ajas   fin des bugfixes ...
393

447dc60e   Thibaud Ajas   resolution bug - ...
394
<?php // Alors oui, c'est pas joli, mais CakePHP a eu l'EXCELENTE IDEE de TOUT inclure dans la balise <head> du site ... Et bien entendu c'est pas pris en compte ici .... Halleluja bordel (#JeremyFerrary) ?>
2389dbd8   Thibaud Ajas   bugfixes lies au ...
395
396
397
<?=$this->Html->script('jquery-1.8.12')?>
<?=$this->Html->script('script')?>
<?=$this->Html->script('DatepickerConfig')?>
c4d53d09   Etienne Pallier   Bugfix saisie dat...
398
<?//$this->Html->script('Verifications_dates_materiels.js')?>
e7797d3d   Thibaud Ajas   fin des bugfixes ...
399

758a84af   Alexandre   Version: 2.2.4.0
400
<script type="text/javascript">
758a84af   Alexandre   Version: 2.2.4.0
401

758a84af   Alexandre   Version: 2.2.4.0
402
$(document).ready(function () {
12550f61   Thibaud Ajas   bugfixes dates ma...
403
404
405
406
407
408
409
410
411
412
413
414

	/**
	 * Event DOMAINE change
	 *
	 * Sur sélection d'un DOMAINE ==> update CATEGORIES + empty SOUS-CATEGORIES
	 *
	 * Dans le détail :
	 * - si select <> "choisir" ==> categ value = from domaine (select="choisir")
	 * - si select = "choisir" ==> categ value = TOUTES (select="choisir")
	 * - puis (dans les 2 cas) vider scateg
	 *
	 */
758a84af   Alexandre   Version: 2.2.4.0
415
	$("#sur-categorie-id").bind("change", function (event) {
12550f61   Thibaud Ajas   bugfixes dates ma...
416
417
418
419
420
421
422
		var domaineId=$("#sur-categorie-id :selected").val();
		var domaineresp= "<?=$domaineresp?>";
		var role= "<?=$role?>";
		if(domaineId== domaineresp){
			if(role == "Responsable"){
				$("#metro").css("display", "block");
			}else
5973ba4e   Alexis Proust   mise a jour fichier
423
				$("#metro").css("display", "none");
12550f61   Thibaud Ajas   bugfixes dates ma...
424
425
426
		}
		else
			$("#metro").css("display", "none");
e1f6c5b7   Alexandre   Version: 2.3.0.0
427

12550f61   Thibaud Ajas   bugfixes dates ma...
428
429
430
431
432
433
		if (domaineId=="")
			updateSelectOptionsFromAnother("#categorie-id", "#sur-categorie-id", "Categories/getAll", "Choisir une catégorie");
		else
			updateSelectOptionsFromAnother("#categorie-id", "#sur-categorie-id", "Categories/getBySurCategorie", "Choisir une catégorie");
		emptySelectOptions("#sous-categorie-id", "Choisir une sous-catégorie");
		return false;
758a84af   Alexandre   Version: 2.2.4.0
434
	});
758a84af   Alexandre   Version: 2.2.4.0
435

12550f61   Thibaud Ajas   bugfixes dates ma...
436
	/* Mettre un gestionnaire par défaut si c'est un admin qui modifie la fiche. Sinon l'utilisateur aura a le rentrer à la mano */
e7797d3d   Thibaud Ajas   fin des bugfixes ...
437
	if ( <?=(! is_null($res)) ? "true" : "false"?>) $("#gestionnaire-id").val("<?=$_SESSION['Auth']['User']['sn'][0]?>");
12550f61   Thibaud Ajas   bugfixes dates ma...
438
	/* Oui, c'est un batard entre du JavaScript et du PHP ... Mais au moins ca fonctionne en une seule ligne ! */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
439

c1cbc061   Thibaud Ajas   Bugfixes, correct...
440
441
442
443
444
445
446
	/**
	 *
	 * Event CATEGORIE change
	 *
	 * - si select = "choisir" ==> vider scateg
	 * - si select <> "choisir" ==> domaine value selected = celui de la categ, et scateg values = from categ
	 */
12550f61   Thibaud Ajas   bugfixes dates ma...
447
448
449
	$("#categorie-id").bind("change", function(event) {
		var categId = $("#categorie-id :selected").val();
		var categLabel = $("#categorie-id :selected").text();
c1cbc061   Thibaud Ajas   Bugfixes, correct...
450

12550f61   Thibaud Ajas   bugfixes dates ma...
451
452
453
454
455
456
		if (categId == "") emptySelectOptions("#sous-categorie-id", "Choisir une sous-catégorie");
		else {
			updateSelectOptionsFromAnother("#sous-categorie-id", "#categorie-id", "SousCategories/getByCategorie", "Choisir une sous-catégorie " + categLabel);
			updateSelectOptionsFromAnother("#sur-categorie-id", "#categorie-id", "SurCategories/getFromCategorie", "");
		}
		return false;
c1cbc061   Thibaud Ajas   Bugfixes, correct...
457
	});
12550f61   Thibaud Ajas   bugfixes dates ma...
458
});
3a49360d   Thibaud Ajas   bugfixes dates ma...
459
460
	
</script>