add_edit.ctp 52.8 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 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399
<?php

use Cake\ORM\TableRegistry;

// Extending from bootstrap example layouts :
//$this->extend('../Layout/BootstrapLayoutSamples/cover');
//$this->extend('../Layout/BootstrapLayoutSamples/dashboard');
//$this->extend('../Layout/BootstrapLayoutSamples/signin');

$entity_name = 'matériel';

//debug($materiel);
//debug($users_option_list);
//debug($users_login_and_email);
//debug($sousCategories);
//debug($groupesMetiers->toArray());
//debug($projets->toArray());
//debug($entity);


/*
 * (EP)
 * Variables passed to this view by the Controller(s)
 */
// POUR EN VOIR LA LISTE COMPLETE
//debug($this->viewVars);

// - 1) FROM AppController:

$PROFILE_USER = $PROFILE_USER;
$PROFILE_ADMIN = $PROFILE_ADMIN;
$PROFILE_RESPONSABLE = $PROFILE_RESPONSABLE;
//$PROFILE_ADMINPLUS = $PROFILE_ADMINPLUS;
$PROFILE_SUPERADMIN = $PROFILE_SUPERADMIN;
$allProfiles = $allProfiles;

// PAS TOUJOURS
//$_serialize = $_serialize; // True or False

$sites = $sites;

$username = $username;
$configuration = $configuration;
$D = $D; // = $configuration->mode_debug (raccourci)
$priviledgedUser = $priviledgedUser; // ATTENTION, $priviledgedUser = NULL si l'utilisateur courant n'est pas un utilisateur privilégié (pas dans la table "utilisateurs")
$role = $role;
$profile = $profile;
$USER_IS_UTILISATEUR = $USER_IS_UTILISATEUR;
$USER_IS_RESPONSABLE = $USER_IS_RESPONSABLE;
$USER_IS_ADMIN = $USER_IS_ADMIN;
//$USER_IS_ADMINPLUS = $USER_IS_ADMINPLUS;
$USER_IS_SUPERADMIN = $USER_IS_SUPERADMIN;
$USER_IS_RESPONSABLE_OR_MORE = $USER_IS_RESPONSABLE_OR_MORE;
$USER_IS_ADMIN_OR_MORE = $USER_IS_ADMIN_OR_MORE;
//$USER_IS_ADMINPLUS_OR_MORE = $USER_IS_ADMINPLUS_OR_MORE;

$hiddenFields = $hiddenFields;
$mandatoryFields = $mandatoryFields;
//$readOnlyFields = $readOnlyFields;
$haveDefaultValueFields = $haveDefaultValueFields;

// Metrologie
$idGmNa = $idGmNa;
$idGtNa = $idGtNa;

// ET AUSSI QUELQUES FONCTIONS :

$dateProchainControleVerif = $dateProchainControleVerif;


// - 2) par le controleur de cette vue (MaterielsController)


// add or edit mode ? true=add ; false=edit
$IS_ADD = $IS_ADD;
$IS_EDIT = !$IS_ADD;
$CAN_PRINT_LABEL = $CAN_PRINT_LABEL;

$entity = $entity;
// @deprecated
$materiel = $entity;
//debug($entity);

$statuses = $statuses;

$domaineresp = $domaineresp;
//$designations = $designations;
//foreach ($designations as $f) debug($f);
$fournisseurs = $fournisseurs;
//foreach ($fournisseurs as $l) debug($l);
//foreach ($fournisseurs as $k=>$v) debug("$k => $v");
$gestionnaires = $gestionnaires;
$lieu_detail = $lieu_detail;
//foreach ($lieu_detail as $l) debug($l);
//foreach ($lieu_detail as $k=>$v) debug("$k => $v");
$users_option_list = $users_option_list;
$users_login_and_email = $users_login_and_email;

// Listes
$surCategories = $surCategories;
$categories = $categories;
$sousCategories = $sousCategories;
$projets = $projets;
//foreach($projets as $k=>$p) debug($k);
//foreach($surCategories as $k=>$e) debug($k);
$readonlyFields = $readonlyFields;


// ADD only
if ($IS_ADD) {
    $verb = 'Ajouter';
    $icon = 'icon-plus';
    $redirect_action = 'index';
}
// EDIT only
else {
    $verb = 'Éditer';
    $icon = 'icon-edit';
    $redirect_action = 'view';
    $isReadonlyField = $isReadonlyField; // function
    //$numMateriel = $numMateriel;
    if (isset($nom_ancien_responsable)) $nom_ancien_responsable = $nom_ancien_responsable;
    $IS_CREATED = $IS_CREATED;
    $IS_VALIDATED = $IS_VALIDATED;
    $IS_ARCHIVED_OR_TOBE = $IS_ARCHIVED_OR_TOBE;
    $IS_ARCHIVED = $IS_ARCHIVED;
    $role = $role;
    $designation_edit = $designation_edit;
    $lieu_detail_edit = $lieu_detail_edit; // [12007 => '']
    if ($IS_ARCHIVED) $readonlyFields = array('*','status');
} // EDIT only
//debug($readonlyFields);

$mail_responsable = $mail_responsable;


// 3) FUNCTIONS from AppController
$mydebug = $mydebug; // $mydebug($D,"message");
$displayElement = $displayElement;
$echoActionButton = $echoActionButton;
$echoSubmitButtons = $echoSubmitButtons;

$mydebug($D, $surCategories);
//$mydebug($D, $categories);
$mydebug($D, $materiel);

//debug($GLOBALS);

//$D = $configuration->mode_debug;
//$mydebug($D, "mail resp: ".$mail_responsable);


/*
 * DEFINITION DE NOUVELLES VARIABLES POUR CETTE VUE
 */

// EDIT only
$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
 ]);
 */

//TODO: move to controller
/*
 $USER_IS_RESPONSABLE_AND_SAME_GROUP = $USER_IS_RESPONSABLE && (
 (isset($priviledgedUser->groupes_metier_id) && $materiel->groupes_metier_id == $priviledgedUser->groupes_metier_id)
 ||
 (isset($priviledgedUser->groupes_thematique_id) && $materiel->groupes_thematique_id == $priviledgedUser->groupes_thematique_id)
 );
 */
// EDIT only
$USER_IS_SAME_GROUP_AS_MATERIEL = (
    ( isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa && $materiel->groupes_metier_id == $priviledgedUser->groupes_metier_id )
    ||
    ( isset($priviledgedUser->groupes_thematique_id) && $priviledgedUser->groupes_thematique_id != $idGtNa && $materiel->groupes_thematique_id == $priviledgedUser->groupes_thematique_id )
    );
$USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL = $USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL;

/*
// EDIT only
$readonlyFields = array();
if ($IS_EDIT) {
    $administrationData = array(
        'eotp',
        'numero_commande',
        //'code_comptable',
        'numero_inventaire_organisme',
        'numero_inventaire_old'
    );
    if ($IS_VALIDATED)
        // can only modify some fields
        $readonlyFields = 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) $readonlyFields = array('*','status');
    else if ($IS_ARCHIVED) $readonlyFields = array('*','status');
    /S
    if ($IS_VALIDATED && $materiel->sous_categorie_id)
    	$readonlyFields = array_merge(
    	    array('sous_categorie_id'), 
    	    $readonlyFields
    );
    if ($IS_VALIDATED && $materiel->numero_serie)
    	$readonlyFields = array_merge(
    	    array('numero_serie'), 
    	    $readonlyFields
    );
    S/
} // EDIT only
//debug($readonlyFields);
*/


	// Création des 2 boutons submit du formulaire (Enregistrer et Cancel)
	/*
	 function echoSubmitButtons($context, $matos_id) {
	 // - Bouton Enregistrer
	 echo '<div id="form-submit-buttons">';
	 //echo '<div class="col-md-7">';
	 echo $context->Form->input('Enregistrer', ['type'=>'submit', 'value'=>'Submit', 'class'=>'btn btn-primary']);
	 //echo $context->Form->button(('<i class="btn btn-outline-dark btn-sm">Annuler</i>'), ['action' => 'view', $matos_id], ['escape' => false,'onclick' => 'return true;','style' => 'margin-right: 10px']);
	 //echo $context->Html->link(__('Annuler'), ['action' => 'view', $matos_id], ['class' => 'btn btn-info ', 'escape' => false]);
	 echo $context->Html->link(__('<i>Annuler</i>'), ['action' => 'view', $matos_id], ['class'=>'btn btn-outline-dark btn-sm', 'style'=>"text-decoration:none;", 'escape'=>false]);
	 echo '</div>';
	 /S
	 //echo $this->Form->submit(__('Enregistrer'));
	 echo $context->Form->button('Enregistrer', ['class'=>'btn btn-outline-success', 'type'=>'submit']);
	 // - Bouton Cancel
	 //echo $this->Html->link(__('<i class="icon-minus-sign"></i> Annuler'), ['action' => 'view', $materiel->id], ['escape' => false,'onclick' => 'return true;','style' => 'margin-right: 10px']);
	 echo $context->Form->button(('<i class="btn btn-outline-dark btn-sm">Annuler</i>'), ['action' => 'view', $matos_id], ['escape' => false,'onclick' => 'return true;','style' => 'margin-right: 10px']);
	 //echo '<button type="reset" class="btn btn-default pull-right">Cancel</button>';
	 //echo '<a href="/link-to/whatever-address/" id="cancel" name="cancel" class="btn btn-default">Cancel</a>';
	 S/
	 }
	 */

	
	
	
	

	


/*
// COPIE de materiel (on a cliqué sur "Copier ce matériel")
if (isset($cpMateriel)) {
    //debug($cpMateriel);
    $Designation = $cpMateriel->designation;
    $Sur_categ_id = $cpMateriel->sur_categorie_id;
    $Categ_id = $cpMateriel->categorie_id;
    $Sous_categ_id = $cpMateriel->sous_categorie_id;
    $Description = $cpMateriel->description;
    $Organisme_id = $cpMateriel->organisme_id;
    $Mat_administratif = $cpMateriel->materiel_administratif;
    $Mat_technique = $cpMateriel->materiel_technique;
    $Date_acquisition = $cpMateriel->date_acquisition;
    $Date_reception = $cpMateriel->date_reception;
    $Fournisseur = $cpMateriel->fournisseur;
    $Prix_ht = $cpMateriel->prix_ht;
    $Groupes_thematique_id = $cpMateriel->groupes_thematique_id;
    $Groupes_metier_id = $cpMateriel->groupes_metier_id;
    $Lieu_detail = $cpMateriel->lieu_detail;
    $Site_id = $cpMateriel->site_id;
} else {
// NOUVEAU matériel (on a cliqué sur "Nouveau matériel")
    $Designation = NULL;
    if (!isset($Sur_categ_id)) $Sur_categ_id = NULL;
    $Categ_id = NULL;
    $Sous_categ_id = NULL;
    $Description = NULL;
    $Organisme_id = NULL;
    $Mat_administratif = NULL;
    $Mat_technique = NULL;
    $Date_acquisition = NULL;
    $Date_reception = NULL;
    $Fournisseur = NULL;
    $Prix_ht = NULL;
    $Groupes_thematique_id = 1;
    $Groupes_metier_id = 1;
    $Lieu_detail = NULL;
    $Site_id = 9;
}
*/
//debug($Sur_categ_id)
?>




<!--  
*************************************************
*** DEBUT DE LA PAGE WEB SPÉCIFIQUE (CONTENT) *** 
*************************************************
-->

<!--  DIV FORMULAIRE -->
<div class="materiels form col-lg-4 col-md-7 col-sm-9">

	<!-- Titre -->
	<h2>
		<i class="<?=$icon?>"></i> <?="$verb un $entity_name"?>
	</h2>

    <?=$this->Form->create($materiel)?>
    
    	<?php
        // Après harmonisation de edit et administrer plus besoin de lien vers la page*
        /*
        if ($USER_IS_SUPERADMIN) {
            echo $this->Html->link('Aller au formulaire d\'édition avancée', [
                'action' => 'administrer',
                $materiel->id
            ]);
            echo '<br><br>';
        }*/
        ?>
    
        <!--  BOUTONS SUBMIT et CANCEL -->
        <!-- <=$echoSubmitButtons($this, "index", $materiel->id);?> -->
        <?php $echoSubmitButtons($this, $redirect_action, $materiel->id); ?>    
		<!--<div id="boutons" class="actions"
			style="margin-bottom: 20px; width: 100%; float: none; padding: 10px 0;">
        <=$this->Form->submit(__('Enregistrer'))?>
        <=$this->Form->button('Enregistrer', [ 'class'=>'btn btn-outline-success', 'type'=>'submit', ]) ?>-->
        <!--<=$this->Html->link(__('<i class="icon-minus-sign"></i> Annuler'), ['action' => 'index'], ['escape' => false,'onclick' => 'return true;','style' => 'margin-right: 10px'])?>
        <=$this->Form->button(('<i class="btn btn-outline-dark btn-sm">Annuler</i>'), ['action' => 'index'], ['escape' => false,'onclick' => 'return true;','style' => 'margin-right: 10px'])?>
        </div>
        -->

    	<fieldset>        

        <?php
        
        /* (EP) IMPORTANT
         * 
         * Les champs sont automatiquement reconnus comme REQUIRED s'ils sont définis dans src/Model/Table/MaterielsTables.php avec 
         *      $validator->notEmpty('nom-du-champ');
         * Ces champs sont automatiquement affichés avec un asterisque rouge sur la droite du label
         * (fallait deviner...)
         * 
         */
        
        // - designation
        echo $this->Form->control('designation', [
            //'type' => 'text',
            'label' => 'Désignation',
            //'default' => $Designation,
            // ADD only
            /////'default' => $materiel->designation,
            //'default' => $designations,
            //'default' => $designations->toArray(),
            // EDIT only
            'disabled' => $IS_ADD ? false : $isReadonlyField('designation', $readonlyFields)
        ]);
        /*
        $value = $IS_EDIT ? array_shift($designation_edit) : '';
        ?>
        <div class="form-group text">
        <label label class="control-label" for="designation">Désignation</label>
        <!-- autocomplete="on" => ajoute les éléments saisis auparavant (depuis l'historique du navigateur) => pas bon -->
        	<input list="desig" id="designation" name="designation" value="<?=$value?>" type="text" placeholder="choisir/ajouter une désignation" autocomplete="off">
        	<datalist id="desig">
            	<?php foreach ($designations as $v) echo "<option value='$v'>"; ?>
        	</datalist>
        </div>
        */
        
        // will_stay
        echo $this->Form->control('will_stay', [
            'label' => 'Ce matériel restera au laboratoire',
            // Inutile, défini via controller
            //'default' => 1,
        ]);
        
        // - Description
        echo $this->Form->control('description', [
        'label' => 'Description',
        // ADD only
        //'default' => $Description
        /////'default' => $materiel->description,
        // EDIT only
        'disabled' => $IS_ADD ? false : $isReadonlyField('description', $readonlyFields)
        ]);
        
        // - materiel HS ?
        if ($IS_EDIT && 
        	(
	        $USER_IS_ADMIN_OR_MORE 
    	    || 
        	$USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER 
        	|| 
	        $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL
        	)
        ) 
        echo $this->Form->control('hors_service', ['label' => 'hors service']);
            /*
             * 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->groupes_thematique_id))) {
             */
        ?>
        
        
        <!-- DOMAINE, CATÉGORIE, ET SOUS-CATÉGORIE -->

        <div id='domaine_categ_souscateg'><fieldset>
        <legend>Domaine, catégorie, et sous-catégorie :</legend>
        <?php
        // - DOMAINE (SUR-CATEGORIE)
        //debug($surCategories);
        echo $this->Form->control('sur_categorie_id', [
            'label' => 'Domaine',
            //'style' => 'width: 260px',
            // inutile car automatique si le nom de la variable passée par le controleur respecte la norme
            //'options' => $surCategories,
            'empty' => 'Choisir un domaine',
            //'default' => $Sur_categ_id
            // ADD only
            //////'default' => $materiel->sur_categorie_id,
            // EDIT only
            //'readonly' => $IS_ADD ? false : $isReadonlyField('sur_categorie_id', $readonlyFields),
            'disabled' => $IS_ADD ? false : $isReadonlyField('sur_categorie_id', $readonlyFields)
        ]);
        // - CATEGORIE
        //$categs = $categories;
        /*
        // if a domain is selected, reduce the categories list to this domain
        //debug($categories);
        if ($this->request->getData('sur_categorie_id') !== null && ($this->request->getData('sur_categorie_id') != '')) {
            $categs = $categs->where([
                'sur_categorie_id =' => $this->request->getData('sur_categorie_id')
            ]);
        }
        //$categs = [];
        */
        echo $this->Form->control('categorie_id', [
            'label' => 'Catégorie',
            //'style' => 'width: 380px',
            // inutile car automatique si le nom de la variable passée par le controleur respecte la norme
            //'options' => $categories,
            //'options' => $categs,
            'empty' => 'Choisir une catégorie',
            //'default' => $Categ_id
            // ADD only
            //////'default' => $materiel->categorie_id,
            // EDIT only
        	'disabled' => $IS_ADD ? false : $isReadonlyField('categorie_id', $readonlyFields)
        ]);
        // - SOUS-CATEGORIE (by default, list is empty)
        //$souscategs = $sousCategories;
        /*
        $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' => $this->request->getData('categorie_id')
            ]);
        }
        */
        echo $this->Form->control('sous_categorie_id', [
            'label' => 'Sous-catégorie',
            //'style' => 'width: 380px',
            // inutile car automatique si le nom de la variable passée par le controleur respecte la norme
            //'options' => $sousCategories,
            //'options' => $souscategs,
            'empty' => 'Choisir une sous-catégorie',
            // ADD only
            //'default' => $Sous_categ_id
            /////////'default' => $materiel->sous_categorie_id,
            // EDIT only
	        'disabled' => $IS_ADD ? false : $isReadonlyField('sous_categorie_id', $readonlyFields)
        
        ]);
        echo "</fieldset></div>"; // 'domaine_categ_souscateg'
        
        
        /* GROUPES MÉTIER ET THÉMATIQUE */
        
        $nom_groupe_thematique = $configuration->nom_groupe_thematique;
        $nom_groupe_metier = $configuration->nom_groupe_metier;
        echo "<div id='groupes_metier_thematique'><fieldset>";
        echo "<legend>Le matériel peut-il être rattaché à un ".lcfirst($nom_groupe_thematique)." ou/et un ".lcfirst($nom_groupe_metier)." ?</legend>";
        // - Groupe thématique
        echo $this->Form->control('groupes_thematique_id', [
            'label' => $nom_groupe_thematique,
            'empty' => 'N/A',
            // inutile car automatique si le nom de la variable passée par le controleur respecte la norme
            //'options' => $groupesThematiques,
            //'default' => $Groupes_thematique_id
            //'default' => $IS_ADD ? $materiel->groupes_thematique_id : 1,
            // EDIT only
            'disabled' => $IS_ADD ? false : $isReadonlyField('groupes_thematique_id', $readonlyFields),
        ]);
        // - Groupe métier
        echo $this->Form->control('groupes_metier_id', [
            'label' => $nom_groupe_metier,
            'empty' => 'N/A',
            // inutile car automatique si le nom de la variable passée par le controleur respecte la norme
            //'options' => $groupesMetiers,
            //'default' => $Groupes_metier_id
            //'default' => $IS_ADD ? $materiel->groupes_metier_id : 1,
            // EDIT only
            'disabled' => $IS_ADD ? false : $isReadonlyField('groupes_metier_id', $readonlyFields),
        ]);
        echo "</fieldset></div>"; // 'domaine_categ_souscateg'
        ?>
        
        
        <!-- PROJET -->
        
        <div id='projet'><fieldset>
        <legend>Le matériel peut-il être rattaché à un projet ?</legend>
        <?php
        echo $this->Form->control('projet_id', [
            'label' => 'Projet',
            'empty' => 'N/A',
            //'empty' => '(seulement si ce matériel est associé à un projet)',
            //'style' => 'width: 380px',
            // inutile car automatique si le nom de la variable passée par le controleur respecte la norme
            //'options' => $projets,
            // ADD only
            //'default' => $Sous_categ_id
            //'default' => $materiel->projet_id,
        ]);
        echo "</fieldset></div>"; // 'domaine_categ_souscateg'
        
        
        // - Technique et/ou Inventoriable ?
        echo $this->Form->control('materiel_technique', [
            'label' => "Technique (pas pour l'inventaire officiel)",
            // ADD only
            //'default' => $Mat_technique
            /////////'default' => $materiel->materiel_technique,
            // EDIT only
            'disabled' => $IS_ADD ? false : $isReadonlyField('materiel_technique', $readonlyFields)
        ]);
        echo "\n";
        /*
        echo $this->Form->control('materiel_administratif', [
            'label' => 'Inventoriable (>' . $configuration->prix_inventaire_administratif . '€)',
            // ADD only
            //'default' => $Mat_administratif
            'default' => $materiel->materiel_administratif,
            // EDIT only
            'disabled' => $IS_ADD ? false : $isReadonlyField('materiel_administratif', $readonlyFields)
        ]);
        */
        
        // - Metrologie
        //if ($configuration->metrologie == '1') {
        if ($configuration->metrologie) {
            echo "\n";
            echo "<div id='metro' > ";
            echo $this->Form->control('metrologie', [
                'label' => 'Suivi en métrologie',
                // ADD only
                'default' => false
            ]);
            echo "</div>";
        }
        
        // - Etiquette posée ?
        if ($CAN_PRINT_LABEL && $USER_IS_RESPONSABLE_OR_MORE) {
            /*
             * }
             * if (in_array($role, [
             * 'Responsable',
             * 'Administration',
             * 'Administration Plus',
             * 'Super Administrateur'
             * ])) {
             */
            echo $this->Form->control('etiquette', [
                'label' => 'Etiquette posée',
				// EDIT only
		        'disabled' => $IS_ADD ? false : $isReadonlyField('etiquette', $readonlyFields)
            ]);
        }
        
        // - Site
        echo $this->Form->control('site_id', [
            // inutile car automatique si le nom de la variable passée par le controleur respecte la norme
            //'options' => $sites,
            //'style' => 'width: 380px',
            //'default' => $Site_id
	        //'default' => ($IS_ADD ? $materiel->site_id : 9),
            //////////'default' => ($IS_ADD ? $materiel->site_id : null),
            'empty' => 'N/A',
	        // EDIT only
	        'disabled' => $IS_ADD ? false : $isReadonlyField('site_id', $readonlyFields)
        ]);
        
        // - Detail lieu stockage (avec affichage auto des lieux déjà saisis)
        /* OLD
        echo $this->Form->input('lieu_detail', [
            'label' => 'Détail lieu de stockage',
            'disabled' => $isReadonlyField('lieu_detail', $readonlyFields)
        ]);
        */
        // (old) EDIT only :
        //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">';
		// (old) ADD only :
        //echo '<div class="input text"><label for="lieu_detail">Détail lieu de stockage</label><input list="lieu" id="lieu_detail" name="lieu_detail" type="text" placeholder="choisir/ajouter un lieu" autocomplete="off"><datalist id="lieu">';
        //debug($lieu_detail_edit); // [12007 => 'bureau 13']
        $value = $IS_EDIT ? array_shift($lieu_detail_edit) : '';
        //debug($value); // bureau 13
        //debug($lieu_detail); // liste des lieux déjà saisis
        //<div class="input text">
        ?>
        <div class="form-group text">
        	<label label class="control-label" for="lieu-detail">Détail lieu de stockage</label>
			<!-- autocomplete="on" => ajoute les éléments saisis auparavant (depuis l'historique du navigateur) => pas bon -->
        	<input list="lieu" id="lieu-detail" name="lieu_detail" value="<?=$value?>" type="text" placeholder="choisir/ajouter un lieu" autocomplete="off">
        	<datalist id="lieu">
            	<?php foreach ($lieu_detail as $e) echo "<option value='$e'>"; ?>
        	</datalist>
        </div>
		<?php
		
		$comment = 'Entrez une date (JJ/MM/AAAA)';
		
        // - Date acquisition
		echo $this->Form->control('date_acquisition', [
		//echo $this->Form->date('date_acquisition', [
            'type' => 'text',
            'label' => 'Date commande (BC)',
            'class' => 'datepicker',
            'placeholder' => $comment,
            // ADD only
	        //'default' => $Date_acquisition
  	      	//'default' => $materiel->date_acquisition,
  	      	// (EP 20201125 date achat n'est plus obligatoire, mais c'est bien d'en mettre une par défaut quand même...)
		    'default' => date("d/m/Y"),
		    
		    // A CAUSE DE CE FICHU PHP5 ET VIEUX MYSQL !!!, INUTILE EN PHP7 !!
		    // Affichage dd/mm/yy
            //'value' => $materiel->date_acquisition->format('d/m/y'),
            // Affichage dd/mm/yyyy
		    'value' => $IS_ADD ? null : ($materiel->date_acquisition ? $materiel->date_acquisition->format('d/m/Y') : null),
  	      	
  	      	// EDIT only
	        'disabled' => $IS_ADD ? false : $isReadonlyField('date_acquisition', $readonlyFields)
        ]);
        
        // - Date réception
		$value_edit = null;
		if ($IS_EDIT && $materiel->date_reception) $value_edit = $materiel->date_reception->format('d/m/Y');
        echo $this->Form->control('date_reception', [
            'type' => 'text',
            'label' => 'Date de livraison',
            'class' => 'datepicker',
            'placeholder' => $comment,
            'empty' => true,
            // ADD only
       		//'default' => $Date_reception
	        ////////'default' => $materiel->date_reception,
	        
	        // php5...
            'value' => $IS_ADD ? null : $value_edit,
	        
        	// EDIT only
	        'disabled' => $IS_ADD ? false : $isReadonlyField('date_reception', $readonlyFields)
        ]);
        
        // - Durée garantie
        echo '<table id="tableAlignementFrequence"><tr>';
	        echo '<td>';
		        echo $this->Form->control('duree_garantie', 
		            [
    		        'type' => 'text',
        		    'label' => 'Durée garantie',
            		//'style' => 'width: 100px',
	            	'templates' => [
    	            	'inputContainer' => '<div class="A">{{content}}</div>'
        	    	],
	            	'placeholder' => ''
		        ]);
    	    echo '</td>';
    	    echo '<td>';
        		echo $this->Form->control('unite_duree_garantie', [
	        	    'label' => false,
        		    'style' => 'width: 100px',
        		    'templates' => [
    	        	    //'inputContainer' => '<div class="typeFrequence" style="margin-left: -300px;margin-right: 200px;margin-bottom: -23px;">{{content}}</div>'
    	        	    'inputContainer' => '<div class="typeFrequence" style="margin-left:0px;margin-right:0px;margin-bottom:-23px;">{{content}}</div>'
	            	],
		            'options' => [
    		            'Mois' => 'Mois',
        		        'Ans' => 'Ans'
	            	],
		            'default' => 'Ans'
    		    ]);
        	echo '</td>';
		echo '</tr></table>';
        
		// - Date fin garantie
        echo $this->Form->control('date_fin_garantie', [
            'type' => 'text',
            'label' => 'Date fin de garantie',
            'placeholder' => $comment,
            'class' => 'datepicker',
            /////////'default' => null,
            
            // php5...
            //'value' => $IS_ADD ? null : $materiel->date_fin_garantie->format('d/m/Y'),
        ]);
        
        // EDIT only
        // - Statut
        //if ($IS_EDIT && $USER_IS_ADMINPLUS_OR_MORE) {
        if ($IS_EDIT && $USER_IS_SUPERADMIN) {
            /*
             * if (in_array($role, [
             * 'Administration Plus',
             * 'Super Administrateur'
             * ])) {
             */
            echo $this->Form->control('status', [
				'label' => 'Statut',
				// inutile car automatique si le nom de la variable passée par le controleur respecte la norme
                //'options' => $statuses,
                /*
                'options' => [
	        	    'CREATED' => 'CREATED',
    	        	'VALIDATED' => 'VALIDATED',
	    	        'TOBEARCHIVED' => 'TOBEARCHIVED',
    	    	    'ARCHIVED' => 'ARCHIVED'
            	]
            	*/
            ]);
        }
        
        // - Num série
        $f = 'numero_serie';
        echo $this->Form->control($f, [
            'label' => 'Numéro de série',
			// EDIT only
	        //'disabled' => $IS_ADD ? false : $isReadonlyField($f, $readonlyFields)
            'disabled' => $IS_ADD ? false : $isReadonlyField($f, $readonlyFields)
        ]);
        

        // - Nom utilisateur (ou destination du matériel)
        //$readonly = $USER_IS_UTILISATEUR ? TRUE : FALSE;
        echo $this->Form->control('nom_user', [
            'label' => "Nom de l'Utilisateur (ou destination du bien)",
            //'empty' => 'Choisir une personne',
            /////'empty' => $username,
            //'default' => $username,
            //'options' => $utilisateurs
            //'options' => $users_option_list,
            //'readonly' => $IS_EDIT ? false : $readonly,
        ]);
        
        // - Nom Acheteur (responsable du matériel)
        /*
        $fieldType = $USER_IS_UTILISATEUR ? 'hidden' : 'input';
        echo $this->Form->$fieldType('nom_responsable', [
        */
        $f = 'nom_responsable';
        $readonly = $USER_IS_UTILISATEUR ? TRUE : FALSE;
        echo $this->Form->control($f, [
            'label' => "Nom de l'Acheteur",
            //'empty' => 'Choisir une personne',
            //'empty' => $entity->nom_responsable,
            //'default' => $entity->nom_responsable,
            //'default' => $username,
            'options' => $users_option_list,
            //'options' => $utilisateurs
            //'readonly' => $IS_EDIT ? false : $readonly,
            //'readonly' => $readonly,
            'disabled' => $readonly || ( $IS_ADD ? false : $isReadonlyField($f, $readonlyFields) ),
        ]);
        
        // EDIT only
        // - Nom ancien responsable (acheteur)
        if ($IS_EDIT) {
        if (isset($nom_ancien_responsable)) {
            echo $this->Form->control('nom_ancien_responsable', [
                'label' => 'Nom ancien responsable (acheteur)',
                'readonly' => true,
                'default' => $nom_ancien_responsable
            ]);
        }
        }
        
        // - Email utilisateur
        echo $this->Form->control('email_responsable', [
	        'label' => "Email de l'Acheteur",
            'readonly' => true,
            // ADD only (Quand je crée une fiche, la personne responsable par défaut, c'est moi...)
            'default' => $mail_responsable
        ]);
        
        
        // - Nom Responsable du crédit
        $f = 'resp_credit';
        echo $this->Form->control($f, [
            //'label' => "Responsable du crédit (si différent de l'acheteur)",
            'label' => "Responsable du crédit (par défaut l'acheteur)",
            'disabled' => $IS_ADD ? false : $isReadonlyField($f, $readonlyFields)
        ]);
        

       	// (EP) Attention, était désactivé (commenté) pour ADD mais pas pour EDIT
        // (EP) TODO: Pour Javascript only (bidouille sale à éviter...)
        // Ssi le user courant est un gestionnaire, on récupère tous ses attributs
        // pour pouvoir le mettre comme gestionnaire par défaut de ce matériel
        $gestionnaire = TableRegistry::getTableLocator()->get('Users')
            ->find()	
            ->where([
                'username' => $username,
                'role' => 'Administration'
            ])
            ->first();
        /*
        $administrateurs = TableRegistry::get('Users')->find('list', [
            'keyField' => 'id',
            'valueField' => 'nom'
        ])
        ->where([
            'role =' => 'Administration'
        ])
        ->toArray();
        */
        
        // - Nom du gestionnaire de ref
        $f = 'gestionnaire_id';
        echo $this->Form->control($f, [
            // inutile car automatique si le nom de la variable passée par le controleur respecte la norme
            //'options' => $gestionnaires,
            //'options' => $administrateurs,
            'label' => 'Nom gestionnaire de référence',
            //'empty' => 'Choisir un gestionnaire',
            'empty' => 'Je ne sais pas qui choisir',
            // TODO: pas joli !
            // ADD only
            'default' => $_SESSION['Auth']['User']['sn'][0],
            'disabled' => $IS_ADD ? false : $isReadonlyField($f, $readonlyFields)
        ]);
        
        
        
        /* 
         * - Fournisseur (+ ajout possible)
         */
        $f = 'fournisseur_id';
        //nouveau champ de saisie de Fournisseur, il ne se saisissait pas à l'ajout
        //echo '<DIV>';
        //echo $this->Form->control('fournisseur_id', [
        /* Cette ligne...
        echo $this->Form->control('fournisseur.name');
        // ... produit ce résultat :
		<div class="form-group text">
		<label class="control-label" for="fournisseur-name">Name</label>
		<input type="text" name="fournisseur[name]" id="fournisseur-name" class="form-control"/>
		</div>
		*/
        $fournisseurs = $fournisseurs->toArray();
        /*
        debug($entity->fournisseur_orig);
        debug($entity->fournisseur_id);
        debug($entity->fournisseur);
        //debug($entity);
        //debug($value);
        */
        $value_old = $entity->$f ? $fournisseurs[$entity->$f] : '';
        if (isset($entity->fournisseur->name) && $entity->fournisseur->name!='')
            // nouveau fournisseur
            $value = $entity->fournisseur->name;
        else
            // ancien fournisseur
            $value = $value_old;
        //debug($value);
        $values = array_values($fournisseurs);
        // Sauvegarde de la valeur d'origine (pour voir plus tard si elle a été modifiée ou pas) 
        //echo $this->Form->hidden('fournisseur_orig', ['value' => $value]);
        echo $this->Form->hidden('fournisseur_orig', ['value' => $value_old]);
        //debug($values);
        /* field is disabled ?
        - $disabled = 'disabled'; // disabled
        - $disabled = ''; // enabled
        */
        $disabled = ''; // enabled
        if ( $IS_EDIT && $isReadonlyField($f, $readonlyFields) ) $disabled = 'disabled';
        
        ?>
        <div class="form-group text">
    		<label class="control-label" for="fournisseur-name">Fournisseur</label>
    		<!-- autocomplete="on" => ajoute les éléments saisis auparavant (depuis l'historique du navigateur) => pas bon -->
            <input type="text" id="fournisseur-name" name="fournisseur[name]" <?=$disabled?> value="<?=$value?>" list="fournisseurs" placeholder="choisir/ajouter un fournisseur" autocomplete="off">
            <datalist id="fournisseurs">
                <?php foreach ($values as $v) echo "<option value='$v'>"; ?>
            </datalist>
            <?php
            if ($USER_IS_ADMIN_OR_MORE) {
                echo '<br>'.$this->Html->link('Gérer les Fournisseurs', [
                    'controller' => 'Fournisseurs',
                    'action' => 'index'
                ]);
                echo "<br><i>(CTRL-click pour ouvrir dans un nouvel onglet)</i>";
            }
            ?>
        </div>
        <?php
        //(faire CTRL-clic ou CMD-clic sur ce lien pour garder la page courante ouverte
        //et ouvrir les fournisseurs dans un nouvel onglet) 
        
        //echo $this->Form->control('fournisseur_id');
        /*
        echo $this->Form->control('fournisseur_id', [
        //echo $this->Form->control('fournisseur.name', [
            'label' => 'Fournisseur',
            'options' => $fournisseurs,
            //'style' => 'width: 380px',
            'empty' => 'Choisir un fournisseur',
            // EDIT only
	        'disabled' =>  $IS_ADD ? false : $USER_IS_UTILISATEUR
            /S
             in_array($role, [
             'Utilisateur'
             ])
             S/
        ]);
        */
        /*
        echo $this->Html->link("Ajouter un fournisseur", [
            'controller' => 'Fournisseurs',
            'action' => 'add',
        ]);
        */
        // Ajouter un nouveau fournisseur
        /*
        echo $this->Html->link(__('<i class="icon-plus"> Ajouter un fournisseur</i>'), [
            'controller' => 'Fournisseurs',
            'action' => 'add',
            $IS_ADD ? 'NEW' : $materiel->id
        ], [
            'escape' => false,
            'onclick' => 'return true;'
        ]);
        echo '</DIV>';
        */
        
        
        
        // - Organisme
        echo $this->Form->control('organisme_id', [
            // inutile car automatique si le nom de la variable passée par le controleur respecte la norme
            //'options' => $organismes,
            //'style' => 'width: 380px',
            'empty' => 'Choisir un organisme',
            // ADD only
	        //'default' => $Organisme_id
	        ///////'default' => $materiel->organisme_id,
    	    // EDIT only
	        'disabled' => $IS_ADD ? false : $isReadonlyField('organisme_id', $readonlyFields)
        ]);
        
        // - Prix HT
        $f = 'prix_ht';
        echo $this->Form->control($f, [
            'label' => 'Prix HT (€)',
			// ADD only
	        //'default' => $Prix_ht
	        ///////'default' => $materiel->prix_ht,
    	    // EDIT only
        	'disabled' => $IS_ADD ? false : $isReadonlyField($f, $readonlyFields),            
        ]);
        
        $f = 'budgets';
        echo $this->Form->control($f, [
            'label' => 'Sur quel(s) budget(s) ?',
            // EDIT only
            'placeholder' => 'Si plusieurs, séparer avec virgule',
        	'disabled' => $IS_ADD ? false : $isReadonlyField($f, $readonlyFields),
        ]);
        
        
        /*
         * ************************************************************************************
         * PARTIE ADMINISTRATIVE (tout le monde peut la voir, mais seul un ADMIN peut l'éditer)
         * ************************************************************************************
         */        
        
        if ($IS_EDIT || ($IS_ADD && $USER_IS_ADMIN_OR_MORE)) {
            //$DISABLED = $IS_ADD ? false : !$USER_IS_ADMIN_OR_MORE;
            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>';
            
                //(EDIT only)
                /* (EP) A quoi ca sert ce truc ??? 
                 echo $this->Form->checkbox('adminEdit', [
                 'label' => 'Editer la partie administrative',
                 'onchange' => 'changeAdminEdit();',
                 'default' => false
                 ]);
                 */
                
            
                // - Centre financier (eotp)
                /*
                 * if (in_array($role, [
                 * 'Administration',
                 * 'Administration Plus',
                 * 'Super Administrateur'
                 * ])) {
                 */
                $f = 'eotp';
                echo $this->Form->control($f, [
                    'label' => 'Entité(s) dépensière(s) (voir champ Budgets juste au-dessus)',
                    //'label' => 'Entité(s) dépensière(s) (i.e. sur quel(s) budget(s) ?)',
                    //'label' => 'Centre(s) financier(s) / EOTP',
                    // EDIT only
                	//'disabled' => $DISABLED,
                    'disabled' => $IS_ADD ? false : $isReadonlyField($f, $readonlyFields),
                	'placeholder' => 'Si plusieurs, séparer avec virgule'
                ]);
                
                // - Numéro BC
                // On peut entrer le numero bon commande si le materiel est technique et qu'on est responsable du groupe
                $fname = 'numero_commande';
                //$BC_DISABLED = $DISABLED;
                $BC_DISABLED = $IS_ADD ? false : $isReadonlyField($fname, $readonlyFields);
                if ($IS_EDIT && $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL && $materiel->materiel_administratif==0) $BC_DISABLED = False;
                echo $this->Form->control($fname, [
                    'label' => 'Numéro BC',
                    // EDIT only
                    'disabled' => $BC_DISABLED
                ]);
                
                /* Champ désormais inutile
                // - Code comptable
                echo $this->Form->control('code_comptable', [
                    'label' => 'Code comptable',
                    // EDIT only
                    'disabled' => $DISABLED
                ]);
                */
                
                // - Numéro labo
                //(EP) NON, on ne doit pas pouvoir modifier ce numéro, non mais !!!
                if ($IS_EDIT)
                echo $this->Form->control('numero_laboratoire', [
    	            'label' => 'N° inventaire labo',
        	        'id' => 'num_labo',
            	    'disabled' => true
                ]);
                
                // Num inventaire organisme
                echo $this->Form->control('numero_inventaire_organisme', [
                    'label' => 'N° inventaire comptable/tutelles',
    	            // EDIT only
        	        //'disabled' => $DISABLED
                ]);
                
                // Num inventaire (ancien)
                echo $this->Form->control('numero_inventaire_old', [
                    'label' => 'Ancien N° inventaire',
    	            // EDIT only
    	            //'disabled' => $DISABLED
                ]);
                
            echo '</div>';
        }


        /*
         * ************************************************************************************
         * (EDIT ONLY) PARTIE ADMINISTRATIVE AVANCÉE (superadmin only)
         * ************************************************************************************
         */
        // if ($role == 'Super Administrateur') {
        if ($IS_EDIT && $USER_IS_SUPERADMIN) {
            /*
             <DIV partie admin avancée>
             */
            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>';

                /*echo $this->Form->checkbox('adminEditPlus', [
                 'label' => 'Editer la partie administrative avancée',
                 'onchange' => 'changeAdminPlus();',
                 'default' => false
                 ]);*/
                
                // - Nom créateur de la fiche
                echo $this->Form->control('nom_createur', [
                    'label' => 'Nom créateur de cette fiche',
                    'disabled' => true,
                    //'options' => $utilisateurs
                    'options' => $users_option_list
                ]);
                // - Date création
                echo $this->Form->control('created', [
                    'type' => 'text',
                    'label' => 'Date de création',
                    //'class' => 'datepicker',
                    //'placeholder' => 'Cliquez pour sélectionner une date',
                    //'disabled' => $isReadonlyField('date_acquisition', $readonlyFields)
                    'disabled' => true
                ]);
                
                // - Nom modificateur
                echo $this->Form->control('nom_modificateur', [
                    'label' => 'Nom du modificateur',
                    'default' => $username,
                    'disabled' => true
                ]);
                // - Date modif
                echo $this->Form->control('modified', [
                    'type' => 'text',
                    'label' => 'Date de modification',
                    //'class' => 'datepicker',
                    'disabled' => true
                ]);
            
            echo '</div>'; // </DIV partie admin avancée>
        } // if superadmin
        
        // (hidden) nom du créateur (ADD) ou du modificateur (EDIT) (sert à quoi ?)
        $f = $IS_ADD ? 'nom_createur' : 'nom_modificateur';
        echo $this->Form->hidden($f, [
            'value' => $username
        ]);
        
        ?>
        
		</fieldset>
	
        <!-- BOUTONS SUBMIT et CANCEL -->
        <!-- <=$echoSubmitButtons($this, "index", $materiel->id);?> -->
        <?=$echoSubmitButtons($this, $redirect_action, $materiel->id);?>    
    	<!--
    	<=$this->Form->submit(__('Enregistrer'))?>
        <=$this->Form->button('Enregistrer', [ 'class'=>'btn btn-outline-success', 'type'=>'submit', ]) ?>
        <=$this->Form->button(('<i class="btn btn-outline-dark btn-sm">Annuler</i>'), ['action' => 'index'], ['escape' => false,'onclick' => 'return true;','style' => 'margin-right: 10px'])?>
        <=$this->Html->link(__('<i class="icon-minus-sign"></i> Annuler'), ['action' => 'index'], ['escape' => false,'onclick' => 'return true;','style' => 'margin-right: 10px'])?>
    	-->

	<?=$this->Form->end()?>
	
	
</div> <!-- Form -->

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




<?php
/**
 * ************************************************************************************
 *                      JAVASCRIPT
 * ************************************************************************************
 * 
 * 
 * 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...
//echo $this->Html->script('jquery-1.8.12');
//echo $this->Html->script('script');
//echo $this->Html->script('DatepickerConfig');
echo $this->Html->script('Verifications_dates_materiels.js');
?>


<script type="text/javascript">

/**
 *  updateSelectOptionsFromAnother() is defined in webroot/js/script.js
 */
 
$(document).ready(function() {

	// Convert (once for all) PHP $users_login_and_email array to JAVASCRIPT array 
	//Implode Method
	//var array = [INF?php echo implode($array, ","); ?SUP];
	//JSON Method
	var users_login_and_email = <?php echo json_encode($users_login_and_email); ?>;
		
	/* Mettre un gestionnaire par défaut si c'est un admin qui modifie la fiche. Sinon l'utilisateur devra le rentrer à la mano */
	if (<?=!is_null($gestionnaire)?"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 DOMAINE change
	 *
	 * Sur sélection d'un DOMAINE ==> update CATEGORIES + empty SOUS-CATEGORIES
	 *
	 * - si select = "choisir" 	==> categ value = TOUTES
	 * - sinon 					==> categ value = from domaine
	 * - puis vider scateg (dans les 2 cas)
	 *
	 */	
	$("#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;
	}); // onchange Domaine 

	/**
	 *
	 * Event CATEGORIE change
	 *
	 * - si select = "choisir"	==> vider scateg
	 * - sinon 					==> 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);
			// (EP 26/2/19) Inutile, je commente
			//updateSelectOptionsFromAnother("#sur-categorie-id", "#categorie-id", "SurCategories/getFromCategorie", "");
		};
		return false;
	}); // onchange Categorie 

	 
	/**
	 *
	 * Event "Nom utilisateur" change => "Email" change
	 *
	 * TODO: Code commun avec edit.ctp => factoriser quelque part, mais comment, vu qu'on a besoin du tableau users_login_and_email ???
	 * (EP) New method, quicker, get email directly from PHP $users_login_and_email array
	 * (OLD code is below (at the end), "fetch email via AJAX request to UsersController.getLdapEmail") 
	 */
	$("#nom-responsable").bind("change", function(event) {
		var nom_resp = $("#nom-responsable").val();
		var new_email = '';
		//if ( nom_resp == "" ) return false;
		if ( nom_resp != "" ) new_email = users_login_and_email[nom_resp]["email"];
		$("#email-responsable").val(new_email);
	}); // onchange nom utilisateur 


	// EDIT only
  	/**
   	* OnChange durée garantie OU unité => calcul date fin de garantie
   	*/
   	/*
	function calcul_date_fin_garantie(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)
			});
		}
	}
	$("#duree-garantie").bind("change", calcul_date_fin_garantie(event));
	$("#unite-duree-garantie").bind("change", calcul_date_fin_garantie(event));
	*/
   	/*
   	TODO: factoriser, c'est 2 fois la MEME fonction !!!
   	// - OnChange durée
	$("#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)
			});
		}
	});	
   	// - OnChange unité
	$("#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)
			});
		}
	});
	*/

	 
}); // end document.ready


/*
// (EP) Pourquoi c'est pas dans document.ready ca ??? 
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;
		document.getElementById('num_labo').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;
		document.getElementById('num_labo').disabled=true; 
	}
}
*/

/*
// OLD method, fetch email via AJAX request to UsersController.getLdapEmail()
$("#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)
		}
	);
	});
*/


</script>