edit.ctp 25.6 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 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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 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 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 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 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
<?php
use Cake\ORM\TableRegistry;

$USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER = $USER_IS_UTILISATEUR && in_array($username, [
		$materiel->nom_createur,
		$materiel->nom_responsable
]);

$USER_IS_RESPONSABLE_AND_CREATOR_OR_OWNER = $USER_IS_RESPONSABLE && in_array($username, [
		$materiel->nom_createur,
		$materiel->nom_responsable
]);

$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));

$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',
			'materiel_administratif',
			'materiel_technique',
			'site_id',
			'date_acquisition',
			'date_reception',
			'organisme_id',
			'prix_ht',
			'gestionnaire_id'
	), $administrationData);
	else if ($IS_ARCHIVED_OR_TOBE) {
		$myReadonlyFields = array(
				'*',
				'status'
		);
	}
	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);
			?>

<div class="materiels form">
    <?=$this->Form->create($materiel)?>
    <fieldset>

		<h2>
			<i class="icon-edit"></i> Editer un Matériel
		</h2>
		

		        <?php
        /* Après harmonisation suppression du lien vers la page administrer
         * 
         * if ($role == 'Super Administrateur') {
        if ($USER_IS_SUPERADMIN) {
            echo $this->Html->link('Aller au formulaire d\'édition avancée', [
                'action' => 'administrer',
                $materiel->id
            ]);z
            echo '<br><br>';
        }*/
        ?>

        <div id="boutons" class="actions"
			style="margin-bottom: 20px; width: 100%; float: none; padding: 10px 0;">
        <?=$this->Form->submit(__('Enregistrer'))?>
        
        <?=$this->Html->link(__('<i class="icon-minus-sign"></i> Annuler'), ['action' => 'index'], ['escape' => false,'onclick' => 'return true;','style' => 'margin-right: 10px'])?>
        </div>

        <?php
        echo $this->Form->input('designation', [
            'label' => 'Désignation',
            'disabled' => $isReadonlyField('designation', $myReadonlyFields)
        ]);
        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))) {
             */
            echo $this->Form->input('hors_service', [
                'label' => 'Appareil hors_service'
            ]);
        }
        echo $this->Form->input('sur_categorie_id', [
            'label' => 'Domaine',
            'options' => $surCategories,
            'empty' => 'Choisir un domaine',
            'style' => 'width: 260px',
            'readonly' => $isReadonlyField('sur_categorie_id', $myReadonlyFields),
            'disabled' => $isReadonlyField('sur_categorie_id', $myReadonlyFields)
        ]);
        $categs = $categories;
        // 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 != '')
            $categs = $categs->where([
            'sur_categorie_id =' => $materiel->sur_categorie_id
            ]);
        echo $this->Form->input('categorie_id', [
            'label' => 'Catégorie',
            'style' => 'width: 380px',
            'options' => $categs,
            'empty' => 'Choisir une catégorie',
            'disabled' => $isReadonlyField('categorie_id', $myReadonlyFields)
        ]);
        // SOUS-CATEGORIES
        // by default, list is empty
        $souscategs = [];
        // if a categ is selected, update sous-categs list for this categ (only)
        //if ($this->request->getData('categorie_id') !== null && ($this->request->getData('categorie_id') != '')) {
        if ($materiel->categorie_id !== null && $materiel->categorie_id != '') {
            $souscategs = $sousCategories;
            $souscategs = $souscategs->where([
                //'categorie_id' => $this->request->getData('categorie_id')
                'categorie_id' => $materiel->categorie_id
            ]);
        }
        echo $this->Form->input('sous_categorie_id', [
            'label' => 'Sous-catégorie',
            'style' => 'width: 380px',
            'options' => $souscategs,
            '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 (>' . $configuration->prix_inventaire_administratif . '€)',
            'disabled' => $isReadonlyField('materiel_administratif', $myReadonlyFields)
        ]);
        if ($configuration->metrologie == '1') {
            echo "<div id=\"metro\" > ";
            echo $this->Form->input('metrologie', [
                'label' => 'Suivi en métrologie'
            ]);
            echo "</div>";
        }
        echo $this->Form->input('description', [
            'label' => 'Description',
            'disabled' => $isReadonlyField('description', $myReadonlyFields)
        ]);
        if ($USER_IS_RESPONSABLE_OR_MORE) {
            /*
             * if (in_array($role, [
             * 'Responsable',
             * 'Administration',
             * 'Administration Plus',
             * 'Super Administrateur'
             * ])) {
             */
            echo $this->Form->input('etiquette', [
                'label' => 'Etiquette posée',
                'disabled' => $isReadonlyField('etiquette', $myReadonlyFields)
            ]);
        }
        echo $this->Form->input('site_id', [
            'options' => $sites,
            'style' => 'width: 380px',
            'default' => 9,
            'disabled' => $isReadonlyField('site_id', $myReadonlyFields)
        ]);
        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>';
        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 '<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
        ]);
        if ($USER_IS_ADMINPLUS_OR_MORE) {
            /*
             * if (in_array($role, [
             * 'Administration Plus',
             * 'Super Administrateur'
             * ])) {
             */
            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' => $configuration->nom_groupe_thematique,
            'disabled' => $isReadonlyField('groupes_thematique_id', $myReadonlyFields),
            'options' => $groupesThematiques,
            'default' => 1
        ]);
        echo $this->Form->input('groupes_metier_id', [
            'label' => $configuration->nom_groupe_metier,
            'disabled' => $isReadonlyField('groupes_metier_id', $myReadonlyFields),
            'options' => $groupesMetiers,
            'default' => 1
        ]);
        
        echo $this->Form->input('nom_responsable', [
            'label' => 'Nom de l\'utilisateur',
            'empty' => 'Choisir un utilisateur',
            'default' => $username,
            'options' => $utilisateurs
        ]);
        
        if (isset($nom_ancien_responsable)) {
            echo $this->Form->input('nom_ancien_responsable', [
                'label' => 'Nom ancien utilisateur',
                'readonly' => true,
                'default' => $nom_ancien_responsable
            ]);
        }
        echo $this->Form->input('email_responsable', [
            'label' => 'Email de l\'utilisateur',
            'readonly' => true,
            'default' => $mail_responsable
        ]);
        $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();
        echo $this->Form->input('gestionnaire_id', [
            'label' => 'Nom du gestionnaire de référence du matériel',
            'empty' => 'Choisir un gestionnaire',
            'default' => $_SESSION['Auth']['User']['sn'][0],
            'options' => $administrateurs
        ]);
        echo $this->Form->input('fournisseur_id', [
            'label' => 'Fournisseur',
            'options' => $fournisseurs,
            'style' => 'width: 380px',
            'empty' => 'choisir un fournisseur',
            'disabled' => in_array($role, [
                'Utilisateur'
            ])
        ]);
        echo $this->Form->input('organisme_id', [
            'options' => $organismes,
            'style' => 'width: 380px',
            'disabled' => $isReadonlyField('organisme_id', $myReadonlyFields),
            'empty' => 'Choisir un organisme'
        ]);
        echo $this->Form->input('prix_ht', [
            'label' => 'Prix HT (€)',
            'disabled' => $isReadonlyField('prix_ht', $myReadonlyFields)
        ]);
        if ($USER_IS_ADMIN_OR_MORE) {
            /*
             * if (in_array($role, [
             * 'Administration',
             * 'Administration Plus',
             * 'Super Administrateur'
             * ])) {
             */
            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->checkbox('adminEdit', [
                '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>';
        }
        
        
        // if ($role == 'Super Administrateur') {
        if ($USER_IS_SUPERADMIN) {
        	
        	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 avancée</span>';
			/* Checkbox à remettre si on veut pouvoir modifier les champs suivants si elle est cochée
			 * il faut aussi remettre la fonction javascript changeAdminEditPlus() en fin de fichier qui dicte le comportement de ces champs
			
        	echo $this->Form->checkbox('adminPlus', [
        			
        			'label' => 'Editer la partie administrative avancée',
        			'onchange' => 'changeAdminEditPlus();',
        			'default' => false
        	]);*/
        	
        	//if($this->Form->adminEditPlus)
        	echo $this->Form->input('nom_createur', [
        			'label' => 'Nom du créateur',
        			'disabled' => true,
        			'options' => $utilisateurs
        	]);
        	//Date de création de la fiche matériel
        	//dispo en deux versions,
        	//Version de base qui crée un champ pour l'heure, un champ pour le jour, un pour le mois...
        	//nous la vérouillons d'office, car aucune utilisateur même le superadmin n'a pas besoin de modifier ce champ
        	
        	echo $this->Form->input('created', [
        			'label' => 'Date de création',
        			'disabled' => true
        	]);
        	
        	/*Version datepicker, possède un id, si la checkbox en début de div est active
        	 * Ainsi que la fonction changeAdminEditPlus(), ce champ devient disabled en fonction de la checkbox
        	 * il y a cependant plusieurs problèmes, la date est l'heure sont préremplies dans ce date picker qui ne gère que la date
             * Ainsi à chaque fois l'on veut modifier la fiche on est obligé de remodifier ce champ et enlever l'heure
             * Il faudrait changer plus de choses, mais comme l'on a décidé de laisses ces champs non modifiables j'en suis resté là
        	echo $this->Form->input('created', [
        			'type' => 'text',
        			'label' => 'Date de création',
        			'disabled' => true,
        			'class' => 'datepicker'
            ]);*/
        	
        	
        	echo $this->Form->input('nom_modificateur', [
        			'label' => 'Nom du modificateur',
        			'default' => $username,
        			'disabled' => true
        	]);
        	// Même situation que pour la création, mais pour la modification
        	echo $this->Form->input('modified', [
        			'label' => 'Date de modification',
        			'disabled' => true
        	]);
        	
        	//Version datepicker
        	/*echo $this->Form->input('modified', [
        			'type' => 'text',
        			'label' => 'Date de modification',
        			'disabled' => true,
        			'class' => 'datepicker'
        	]);
        	
        	echo '</div>';*/
        	
        }
        	
        	echo $this->Form->hidden('nom_modificateur', [
        			'value' => $username
        	]);
        ?>
    </fieldset>
    <?=$this->Form->submit(__('Enregistrer'))?>
    <?=$this->Form->end()?>
</div>

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

<?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
 */
?>

<?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) ?>
<?=$this->Html->script('jquery-1.8.12')?>
<?=$this->Html->script('DatepickerConfig')?>
<?=$this->Html->script('Verifications_dates_materiels.js')?>
<?=$this->Html->script('script')?>

<script type="text/javascript">
           
/** 
 * 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();

			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;
	});
});

/**
 *
 * 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();
		
		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;
	});
});

 
 /**
  * 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)
  		});
  	});
  });


  /**
   * 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)
    			});
    		}
    	});
    });

 
    //changement d'emplacement de la fonction qui étais dans le fichier ./webroot/js/script.js (si modifiée dans le script, bug de l'application)
    //permet d'afficher les infos administrative
    //après checkbox checked
function changeAdminEdit() {
	if (document.getElementById('eotp').disabled) {
		document.getElementById('eotp').disabled=false;
		document.getElementById('numero-commande').disabled=false;
		document.getElementById('code-comptable').disabled=false;
		document.getElementById('numero-inventaire-organisme').disabled=false;
		document.getElementById('numero-inventaire-old').disabled=false;
	}
	else {
		document.getElementById('eotp').disabled=true;
		document.getElementById('numero-commande').disabled=true;
		document.getElementById('code-comptable').disabled=true;
		document.getElementById('numero-inventaire-organisme').disabled=true;
		document.getElementById('numero-inventaire-old').disabled=true;	
	}
}
/* Fonction retirée car ces informations n'ont pas pour but d'être modifiées
 * Nous laissons la fonction disponible si elle redevient un jour nécessaire
 *
//Permet d'afficher les infos administrative plus après checkbox checked
  function changeAdminEditPlus() {
  	if (document.getElementById('nom-createur').disabled) {
  		document.getElementById('nom-createur').disabled=false;
  		document.getElementById('nom-modificateur').disabled=false;
  		document.getElementById('created').disabled=false;
  		document.getElementById('modified').disabled=false;
  	}
  	else {
  		document.getElementById('nom-createur').disabled=true;
  		document.getElementById('nom-modificateur').disabled=true;
  		document.getElementById('created').disabled=true;
  		document.getElementById('modified').disabled=true;
  	}
  }
*/

  
  
</script>

<!-- 
<script type="text/javascript">

$(document).ready(function () {

	/**
	 * 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
	 *
	 */
	$("#sur-categorie-id").bind("change", function (event) {
		var domaineId=$("#sur-categorie-id :selected").val();
		var domaineresp= "<?=$domaineresp?>";
		var role= "<?=$role?>";
		if(domaineId== domaineresp){
			if(role == "Responsable"){
				$("#metro").css("display", "block");
			}else
				$("#metro").css("display", "none");
		}
		else
			$("#metro").css("display", "none");

		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;
	});

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

	/**
	 *
	 * Event CATEGORIE change
	 *
	 * - si select = "choisir" ==> vider scateg
	 * - si select <> "choisir" ==> domaine value selected = celui de la categ, et scateg values = from categ
	 */
	$("#categorie-id").bind("change", function(event) {
		var categId = $("#categorie-id :selected").val();
		var categLabel = $("#categorie-id :selected").text();

		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;
	});
});
	
</script>

 -->