Blame view

src/Template/Materiels/edit.ctp 15.5 KB
19798ef9   Alexandre   Mode_install, maj...
1
<?php 
19798ef9   Alexandre   Mode_install, maj...
2

19798ef9   Alexandre   Mode_install, maj...
3

82721df2   Thibaud Ajas   Modif des mails g...
4
5
use Cake\ORM\TableRegistry;

19798ef9   Alexandre   Mode_install, maj...
6
7
8
9
10
11
12
13
14
$administrationData = array (
		'eotp',
		'numero_commande',
		'code_comptable',
		'numero_inventaire_organisme',
		'numero_inventaire_old' 
);

$myReadonlyFields = array ();
04a6b875   Alexandre   Version: 2.4.2.0
15
if ($IS_VALIDATED)
19798ef9   Alexandre   Mode_install, maj...
16
17
18
19
20
21
22
23
24
25
	// 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',
302307ec   Alexandre   Version: 2.4.7.0
26
					'date_reception',
19798ef9   Alexandre   Mode_install, maj...
27
28
29
30
31
32
					'organisme_id',
					'prix_ht'
			),
			$administrationData
			);

04a6b875   Alexandre   Version: 2.4.2.0
33
	elseif ($IS_ARCHIVED_OR_TOBE) {
19798ef9   Alexandre   Mode_install, maj...
34
35
36
37
38
39
40
		$myReadonlyFields = array ('*','status');
	}
?>



<div class="materiels form">
6c4edfa3   Alexandre   First Commit LabI...
41
42
    <?= $this->Form->create($materiel) ?>
    <fieldset>
19798ef9   Alexandre   Mode_install, maj...
43
        <h2><i class="icon-edit"></i> Editer un Matériel</h2>
6f74ba5c   Alexandre   Version: 2.5.3.0
44
45
46
47
48
49
50
51
        
        
        <?php 
        if($role == 'Super Administrateur') {
       		echo $this->Html->link('Aller au formulaire d\'édition avancée', ['action' => 'administrer', $materiel->id]); 
        	echo '<br><br>';
		}
        ?>
0e5846aa   Alexandre   Css bouton valide...
52
        <?= $this->Form->submit(__('Enregistrer')) ?>
19798ef9   Alexandre   Mode_install, maj...
53
       
6c4edfa3   Alexandre   First Commit LabI...
54
        <?php
546ab4e5   Alexandre   Version: 2.4.6.5
55
        
19798ef9   Alexandre   Mode_install, maj...
56
57
        echo $this->Form->input('designation', [
        		'label' => 'Désignation',
04a6b875   Alexandre   Version: 2.4.2.0
58
        		'disabled' => $isReadonlyField('designation', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
59
60
61
        		
        ]);
        
302307ec   Alexandre   Version: 2.4.7.0
62
63
64
65
        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 == $userConnected->groupes_metier_id || $materiel->groupes_thematique_id == $userConnected->groupe_thematique_id))) {
        	echo $this->Form->input('hors_service', ['label' => 'Appareil hors_service']);
        }
        
19798ef9   Alexandre   Mode_install, maj...
66
67
68
69
        echo $this->Form->input('sur_categorie_id', [
        		'label' => 'Domaine', 
        		'options' => $surCategories, 
        		'empty' => 'Choisir un domaine',
758a84af   Alexandre   Version: 2.2.4.0
70
        		'style' => 'width: 260px',
04a6b875   Alexandre   Version: 2.4.2.0
71
72
        		'readonly' => $isReadonlyField ( 'sur_categorie_id', $myReadonlyFields ),
        		'disabled' => $isReadonlyField ( 'sur_categorie_id', $myReadonlyFields )
19798ef9   Alexandre   Mode_install, maj...
73
74
        		
        ]);
a97b5772   Alexandre   Migration fonctio...
75
76
77
78
79
80
        
        $categs = $categories;
        // if a domaine is selected, reduce the categories list to this domaine
        if (isset ( $this->request->data['sur_categorie_id'] ) && ($this->request->data['sur_categorie_id'] != '')) {
        	$categs = $categs->where(['sur_categorie_id =' => $this->request->data['sur_categorie_id']]);
        }
19798ef9   Alexandre   Mode_install, maj...
81
82
        echo $this->Form->input('categorie_id', [
        		'label' => 'Catégorie', 
758a84af   Alexandre   Version: 2.2.4.0
83
        		'style' => 'width: 380px',
a97b5772   Alexandre   Migration fonctio...
84
        		'options' => $categs, 
19798ef9   Alexandre   Mode_install, maj...
85
        		'empty' => 'Choisir une catégorie',
04a6b875   Alexandre   Version: 2.4.2.0
86
        		'disabled' => $isReadonlyField('categorie_id', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
87
        ]);
a97b5772   Alexandre   Migration fonctio...
88
89
90
91
92
93
94
95
96
        
        // SOUS-CATEGORIES
        // by default, list is empty
        $souscategs = [];
        // if a categ is selected, update sous-categs list for this categ (only)
        if (isset ( $this->request->data['categorie_id'] ) && ($this->request->data['categorie_id'] != '')) {
        	$souscategs = $sousCategories;
        	$souscategs = $souscategs->where(['categorie_id' => $this->request->data['categorie_id']]);
        }
19798ef9   Alexandre   Mode_install, maj...
97
98
        echo $this->Form->input('sous_categorie_id', [
        		'label' => 'Sous-catégorie', 
758a84af   Alexandre   Version: 2.2.4.0
99
        		'style' => 'width: 380px',
a97b5772   Alexandre   Migration fonctio...
100
        		'options' => $souscategs, 
19798ef9   Alexandre   Mode_install, maj...
101
        		'empty' => 'Choisir une sous-catégorie',
04a6b875   Alexandre   Version: 2.4.2.0
102
        		'disabled' => $isReadonlyField('sous_categorie_id', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
103
104
105
106
        ]);
        
        echo $this->Form->input('materiel_technique', [
        		'label' => 'Technique',
04a6b875   Alexandre   Version: 2.4.2.0
107
        		'disabled' => $isReadonlyField('materiel_technique', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
108
109
        ]);
        echo $this->Form->input('materiel_administratif', [
3499987c   Alexandre   Version: 2.4.3.14
110
        		'label' => 'Inventoriable (>'.$configuration->prix_inventaire_administratif.'€)',
04a6b875   Alexandre   Version: 2.4.2.0
111
        		'disabled' => $isReadonlyField('materiel_administratif', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
112
113
114
115
        ]);
        
        echo $this->Form->input('description', [
        		'label' => 'Description',
04a6b875   Alexandre   Version: 2.4.2.0
116
        		'disabled' => $isReadonlyField('description', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
117
        ]);
04a6b875   Alexandre   Version: 2.4.2.0
118
119
        
        if(in_array($role, ['Responsable', 'Administration', 'Administration Plus', 'Super Administrateur'])) {
19798ef9   Alexandre   Mode_install, maj...
120
121
		echo $this->Form->input('etiquette', [
				'label' => 'Etiquette posée',
04a6b875   Alexandre   Version: 2.4.2.0
122
				'disabled' => $isReadonlyField('etiquette', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
123
		]);
04a6b875   Alexandre   Version: 2.4.2.0
124
125
        }
        
19798ef9   Alexandre   Mode_install, maj...
126
127
        echo $this->Form->input('site_id', [
        		'options' => $sites, 
758a84af   Alexandre   Version: 2.2.4.0
128
        		'style' => 'width: 380px',
9cfb4997   Alexandre   Version: 2.4.3.10
129
        		'default' => 9,
04a6b875   Alexandre   Version: 2.4.2.0
130
        		'disabled' => $isReadonlyField('site_id', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
131
        ]);
1f7e0355   Alexandre   Version: 2.4.2.4
132

9fc6b8a2   Alexandre   Version: 2.4.2.6
133
134
		echo $this->Form->input('lieu_detail', ['label' => 'Détail lieu de stockage', 
				'disabled' => $isReadonlyField('lieu_detail', $myReadonlyFields)]);
19798ef9   Alexandre   Mode_install, maj...
135
136
137
138
139
140
		
        echo $this->Form->input('date_acquisition', [
        		'type' => 'text', 
        		'label' => 'Date de la commande', 
        		'class' => 'datepicker', 
        		'placeholder' => 'Cliquez pour sélectionner une date',
04a6b875   Alexandre   Version: 2.4.2.0
141
        		'disabled' => $isReadonlyField('date_acquisition', $myReadonlyFields),
19798ef9   Alexandre   Mode_install, maj...
142
143
144
145
146
147
        ]);
        echo $this->Form->input('date_reception', [
        		'type' => 'text', 
        		'label' => 'Date de réception', 
        		'class' => 'datepicker', 
        		'placeholder' => 'A éditer lors de la réception uniquement.', 
04a6b875   Alexandre   Version: 2.4.2.0
148
        		'disabled' => $isReadonlyField('date_reception', $myReadonlyFields),
19798ef9   Alexandre   Mode_install, maj...
149
150
        		'empty' => true]);
        
94e21fe8   Alexandre   Version: 2.4.6.9
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

        echo '<table id="tableAlignementFrequence"><tr><td>';
        echo $this->Form->input('duree_garantie', [
        		'type' => 'text',
        		'style' => 'width: 100px',
        		'label' => 'Durée garantie',
        		'templates' => ['inputContainer' => '<div class="A">{{content}}</div>'],
        		'placeholder' => ''
        ]);
        echo '</td><td>';
        echo $this->Form->input ('unite_duree_garantie', [
        		'label' => false,
        		'templates' => ['inputContainer' => '<div class="typeFrequence">{{content}}</div>'],
        		'options' => ['Mois' => 'Mois', 'Ans' => 'Ans'],
        		'default' => 'Ans'
        ]);
        echo '</td></tr></table>';
        echo $this->Form->input('date_fin_garantie', [
        		'type' => 'text',
        		'label' => 'Date fin de garantie',
        		'placeholder' => 'Cliquez pour selectionner une date',
        		'class' => 'datepicker',
        		'default' => NULL
        ]);
        
        
04a6b875   Alexandre   Version: 2.4.2.0
177
        if(in_array($role, ['Administration Plus', 'Super Administrateur'])) {
19798ef9   Alexandre   Mode_install, maj...
178
179
180
181
182
        echo $this->Form->input('status', ['label' => 'Statut', 'options' => [
					'CREATED' => 'CREATED',
					'VALIDATED' => 'VALIDATED',
					'TOBEARCHIVED' => 'TOBEARCHIVED',
					'ARCHIVED' => 'ARCHIVED']]);
04a6b875   Alexandre   Version: 2.4.2.0
183
        }
19798ef9   Alexandre   Mode_install, maj...
184
185
186
        
        echo $this->Form->input('numero_serie', [
        		'label' => 'Numéro de série',
04a6b875   Alexandre   Version: 2.4.2.0
187
        		'disabled' => $isReadonlyField('numero_serie', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
188
189
        ]);
        echo $this->Form->input('groupes_thematique_id', [
e3633c13   Alexandre   Version: 2.4.2.23
190
        		'label' => $configuration->nom_groupe_thematique, 
04a6b875   Alexandre   Version: 2.4.2.0
191
        		'disabled' => $isReadonlyField('groupes_thematique_id', $myReadonlyFields),
e1f6c5b7   Alexandre   Version: 2.3.0.0
192
193
        		'options' => $groupesThematiques,
        		'default' => 1]);
19798ef9   Alexandre   Mode_install, maj...
194
        echo $this->Form->input('groupes_metier_id', [
e3633c13   Alexandre   Version: 2.4.2.23
195
        		'label' => $configuration->nom_groupe_metier, 
04a6b875   Alexandre   Version: 2.4.2.0
196
        		'disabled' => $isReadonlyField('groupes_metier_id', $myReadonlyFields),
e1f6c5b7   Alexandre   Version: 2.3.0.0
197
198
        		'options' => $groupesMetiers,
				'default' => 1]);
19798ef9   Alexandre   Mode_install, maj...
199
        
04a6b875   Alexandre   Version: 2.4.2.0
200
201
        if(!(in_array($role, ['Responsable', 'Administration', 'Administration Plus', 'Super Administrateur']))) {
        echo $this->Form->hidden('nom_responsable', [
cb0ff3ca   Alexandre   Version: 2.4.3.1
202
        		'label' => 'Nom du propriétaire',
04a6b875   Alexandre   Version: 2.4.2.0
203
        		'disabled' => $isReadonlyField('nom_responsable', $myReadonlyFields),
19798ef9   Alexandre   Mode_install, maj...
204
205
        		'empty' => 'Choisir un utilisateur',
        		'default' => $username,
04a6b875   Alexandre   Version: 2.4.2.0
206
207
208
209
        		'options' => $utilisateurs,
        ]);
        } else {
        	echo $this->Form->input('nom_responsable', [
cb0ff3ca   Alexandre   Version: 2.4.3.1
210
        			'label' => 'Nom du propriétaire',
04a6b875   Alexandre   Version: 2.4.2.0
211
212
213
214
215
216
        			'disabled' => $isReadonlyField('nom_responsable', $myReadonlyFields),
        			'empty' => 'Choisir un utilisateur',
        			'default' => $username,
        			'options' => $utilisateurs
        	]);
        }
19798ef9   Alexandre   Mode_install, maj...
217
218
        if(isset($nom_ancien_responsable)){
        	echo $this->Form->input ('nom_ancien_responsable', [
cb0ff3ca   Alexandre   Version: 2.4.3.1
219
        		'label' => 'Nom ancien propriétaire',
19798ef9   Alexandre   Mode_install, maj...
220
221
222
223
224
        		'readonly' => true,
        		'default' => $nom_ancien_responsable
        	]);
        }
        echo $this->Form->input('email_responsable', [
cb0ff3ca   Alexandre   Version: 2.4.3.1
225
        		'label' => 'Email du propriétaire', 
19798ef9   Alexandre   Mode_install, maj...
226
227
228
        		'readonly' => true,
        		'default' => $mail_responsable
        ]);
82721df2   Thibaud Ajas   Modif des mails g...
229
230
231
232
233
234
235
236
237
238
239
240
        
        $res = TableRegistry::get('Users')->find()->where(['username' => $username, 'role' => 'Administration'])->first();
        $administrateurs = TableRegistry::get('Users')->find('list', [ 'keyField' => 'nom', 'valueField' => 'nom'])->where(['role =' => 'Administration']);
        // Condition pour vérifier que se soit un admin qui est connecté : (!is_null($res)) ?
		echo $this->Form->input('nom_gestionnaire', [
        		'label' => 'Nom du gestionnaire de référence du matériel',
        		'disabled' => $isReadonlyField('nom_responsable', $myReadonlyFields),
        		'empty' => 'Choisir un gestionnaire',
				'options' => $administrateurs
        ]);
                
                
19798ef9   Alexandre   Mode_install, maj...
241
242
243
        
        echo $this->Form->input('fournisseur', [
        		'label' => 'Fournisseur',
bc2274a0   Alexandre   Version: 2.4.6.3
244
        		'disabled' => $isReadonlyField('fournisseur', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
245
246
247
        ]);
        echo $this->Form->input('organisme_id', [
        		'options' => $organismes, 
758a84af   Alexandre   Version: 2.2.4.0
248
        		'style' => 'width: 380px',
04a6b875   Alexandre   Version: 2.4.2.0
249
        		'disabled' => $isReadonlyField('organisme_id', $myReadonlyFields),
19798ef9   Alexandre   Mode_install, maj...
250
251
252
253
        		'empty' => 'Choisir un organisme'
        ]);
        echo $this->Form->input('prix_ht', [
        		'label' => 'Prix HT (€)', 
04a6b875   Alexandre   Version: 2.4.2.0
254
        		'disabled' => $isReadonlyField('prix_ht', $myReadonlyFields)
19798ef9   Alexandre   Mode_install, maj...
255
256
        ]);
       
15ebf91f   Alexandre   Version: 2.4.7.2
257
        if(in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur'])) {
04a6b875   Alexandre   Version: 2.4.2.0
258
        	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>';
3ef8f907   Alexandre   Version: 2.4.5.0
259
260
261
262
263
264
265
266
        	
        	echo $this->Form->input('adminEdit', [
        			'type' => 'checkbox',
        			'label' => 'Editer la partie administrative',
        			'onchange' => 'changeAdminEdit();',
        			'default' => false
        	]);
        	
04a6b875   Alexandre   Version: 2.4.2.0
267
268
        	echo $this->Form->input('eotp', [
        			'label' => 'Centre financier/EOTP',
3ef8f907   Alexandre   Version: 2.4.5.0
269
        			'disabled' => true
04a6b875   Alexandre   Version: 2.4.2.0
270
271
272
        	]);
        	echo $this->Form->input('numero_commande', [
        			'label' => 'Numéro de commande',
3ef8f907   Alexandre   Version: 2.4.5.0
273
        			'disabled' => true
04a6b875   Alexandre   Version: 2.4.2.0
274
275
276
        	]);
        	echo $this->Form->input('code_comptable', [
        			'label' => 'Code comptable',
3ef8f907   Alexandre   Version: 2.4.5.0
277
        			'disabled' => true
04a6b875   Alexandre   Version: 2.4.2.0
278
279
280
        	]);
        	echo $this->Form->input('numero_inventaire_organisme', [
        			'label' => 'N° inventaire organisme',
3ef8f907   Alexandre   Version: 2.4.5.0
281
        			'disabled' => true
04a6b875   Alexandre   Version: 2.4.2.0
282
283
284
        	]);
        	echo $this->Form->input('numero_inventaire_old', [
        			'label' => 'Ancien N° inventaire',
3ef8f907   Alexandre   Version: 2.4.5.0
285
        			'disabled' => true
04a6b875   Alexandre   Version: 2.4.2.0
286
287
288
        	]);
        	echo '</div>';
        }
19798ef9   Alexandre   Mode_install, maj...
289
        
19798ef9   Alexandre   Mode_install, maj...
290
        echo $this->Form->hidden('nom_modificateur', ['value' => $username ]);
6c4edfa3   Alexandre   First Commit LabI...
291
292
        ?>
    </fieldset>
0e5846aa   Alexandre   Css bouton valide...
293
    <?= $this->Form->submit(__('Enregistrer')) ?>
6c4edfa3   Alexandre   First Commit LabI...
294
295
    <?= $this->Form->end() ?>
</div>
19798ef9   Alexandre   Mode_install, maj...
296
297
298
299
300
301
302
303

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

758a84af   Alexandre   Version: 2.2.4.0
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326

<?php
/**
 * GESTION DES EVENEMENTS SUR LES DOMAINES/CATEGORIES/SOUS-CATEGORIES 
 *
 * 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)
 *
 * 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
 *
 * Event categ change :
 * - si select <> "choisir" ==> domaine select = from categ, et scateg values = from categ
 * - si select = "choisir" ==> vider scateg
 *
 * Event scateg change : RIEN A FAIRE
 */
?>

<script type="text/javascript">
758a84af   Alexandre   Version: 2.2.4.0
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
           
/** 
 * 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
 * 
 */

$(document).ready(function () {
	$("#sur-categorie-id").bind("change", function (event) {
			var domaineId=$("#sur-categorie-id :selected").val();
e1f6c5b7   Alexandre   Version: 2.3.0.0
343

758a84af   Alexandre   Version: 2.2.4.0
344
345
			if (domaineId=="") 
				updateSelectOptionsFromAnother("#categorie-id", "#sur-categorie-id", "Categories/getAll", "Choisir une catégorie");
758a84af   Alexandre   Version: 2.2.4.0
346
347
			else 
				updateSelectOptionsFromAnother("#categorie-id", "#sur-categorie-id", "Categories/getBySurCategorie", "Choisir une catégorie");
758a84af   Alexandre   Version: 2.2.4.0
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
			emptySelectOptions("#sous-categorie-id","Choisir une sous-catégorie");
			return false;
	});
});

/**
 *
 * Event CATEGORIE change
 *
 * - si select = "choisir" ==> vider scateg
 * - si select <> "choisir" ==> domaine value selected = celui de la categ, et scateg values = from categ
 */
$(document).ready(function () {
	$("#categorie-id").bind("change", function (event) {
		var categId=$("#categorie-id :selected").val();
		var categLabel=$("#categorie-id :selected").text();
e1f6c5b7   Alexandre   Version: 2.3.0.0
364
		
758a84af   Alexandre   Version: 2.2.4.0
365
		if (categId=="") emptySelectOptions("#sous-categorie-id","Choisir une sous-catégorie");
758a84af   Alexandre   Version: 2.2.4.0
366
		else {
758a84af   Alexandre   Version: 2.2.4.0
367
			updateSelectOptionsFromAnother("#sous-categorie-id", "#categorie-id", "SousCategories/getByCategorie", "Choisir une sous-catégorie "+categLabel);
758a84af   Alexandre   Version: 2.2.4.0
368
369
370
371
372
			updateSelectOptionsFromAnother("#sur-categorie-id", "#categorie-id", "SurCategories/getFromCategorie", "");
		}
		return false;
	});
});
e1f6c5b7   Alexandre   Version: 2.3.0.0
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389

 
 /**
  * Event Mail change
  */
  $(document).ready(function () {
  	$("#nom-responsable").bind("change", function (event) {
  		var url = document.URL;
  		var reg=new RegExp("(materiels).*$","g");
  		var emailUrl = url.replace(reg, "Users/getLdapEmail/");
  		$.ajax({
  			url: emailUrl + $("#nom-responsable").val()
  		}).done(function(data) { 
  			$("#email-responsable").val(data)
  		});
  	});
  });
94e21fe8   Alexandre   Version: 2.4.6.9
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420


  /**
   * Event calcul date fin de garantie
   */
    $(document).ready(function () {
    	$("#duree-garantie").bind("change", function (event) {
    		if($("#date-reception").val() != "" && $("#duree-garantie").val() != "") {
    			var url = document.URL;
    			var reg=new RegExp("(materiels).*$","g");
    			var dateUrl = url.replace(reg, "Materiels/getDateGarantie/");
    			$.ajax({
    				url: dateUrl + $("#date-reception").val() + "/" + $("#duree-garantie").val() + "/" + $("#unite-duree-garantie").val()
    			}).done(function(data) { 
    				$("#date-fin-garantie").val(data)
    			});
    		}
    	});
    	$("#unite-duree-garantie").bind("change", function (event) {
    		if($("#date-reception").val() != "" && $("#duree-garantie").val() != "") {
    			var url = document.URL;
    			var reg=new RegExp("(materiels).*$","g");
    			var dateUrl = url.replace(reg, "Materiels/getDateGarantie/");
    			$.ajax({
    				url: dateUrl + $("#date-reception").val() + "/" + $("#duree-garantie").val() + "/" + $("#unite-duree-garantie").val()
    			}).done(function(data) { 
    				$("#date-fin-garantie").val(data)
    			});
    		}
    	});
    });
94e21fe8   Alexandre   Version: 2.4.6.9
421
    
758a84af   Alexandre   Version: 2.2.4.0
422
</script>