index.ctp 33.2 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
<?php
use Cake\I18n\Time;
use Cake\I18n\Date;
use App\Controller\MaterielsController;



// (EP 21/5/19)
// --- Elements set by Controller for this view ---

/*
  TODO: $materiels doit etre enrichi avec des nouveaux attributs tels que (pour chaque materiel de la liste) :
- CAN_EDIT
- CAN_DELETE
- CAN_VALIDATE
- CAN_TBA
- CAN_ARCHIVE
 */

// pas bien, mais pratique
$controller = $controller;

// Options des filtres
$nblines_options = $nblines_options;
$age_options = $age_options;
$domaine_options = $domaine_options;
$projet_options = $projet_options;

$statuses_color = $statuses_color;

//debug($domain_options);
//debug($projet_options);

$nbMateriels = $nbMateriels;
//debug($controller);
$materiels = $materiels;
//debug($materiels);
$configuration = $configuration;
$searchfor = $searchfor;

// Uniquement quand un statut est sélectionné (pour filtrer)
$SELECTED_STATUS = isset($SELECTED_STATUS) ? $SELECTED_STATUS : null;

// TODO: yena plein d'autres
// ...

// - Constants :

$HAS_ORDER_BUTTON = $HAS_ORDER_BUTTON;


// - User status:
$role = $role;
$username = $username;
$priviledgedUser = $priviledgedUser;
$USER_IS_UTILISATEUR = $USER_IS_UTILISATEUR;
$USER_IS_RESPONSABLE = $USER_IS_RESPONSABLE;
$USER_IS_RESPONSABLE_OR_MORE = $USER_IS_RESPONSABLE_OR_MORE;
$USER_IS_ADMIN = $USER_IS_ADMIN;
$USER_IS_ADMIN_OR_MORE = $USER_IS_ADMIN_OR_MORE;
//$USER_IS_ADMINPLUS = $USER_IS_ADMINPLUS;
//$USER_IS_ADMINPLUS_OR_MORE = $USER_IS_ADMINPLUS_OR_MORE;
$USER_IS_SUPERADMIN = $USER_IS_SUPERADMIN;
// (EP) TODO: Vraiment utile ??? A virer je pense
$PROFILE_USER = $PROFILE_USER;
$PROFILE_ADMIN = $PROFILE_ADMIN;
$PROFILE_RESPONSABLE = $PROFILE_RESPONSABLE;
//$PROFILE_ADMINPLUS = $PROFILE_ADMINPLUS;
$PROFILE_SUPERADMIN = $PROFILE_SUPERADMIN;
$allProfiles = $allProfiles;

// - Materiel status:
$idGmNa = $idGmNa;
$idGtNa = $idGtNa;

// - Fonctions :
$displayElement = $displayElement;
$dateProchainControleVerif = $dateProchainControleVerif;
$echoActionButton = $echoActionButton;

// @TODO : get from Configurations
$METRO=false; 




/*
<!--
******************************************************************************
        FONCTIONS D'AFFICHAGE DES DIFFÉRENTES SECTIONS DE LA PAGE WEB
******************************************************************************
-->
*/

$displaySearchField = function($params, $searchfor, $html, $form) {
    /*
    <div class="actions" style="width: 100%; float: none; padding: 0 0;">
    echo $html->link('Chercher', [
        'action' => 'index',
        '?' => $params
    ], [
        'title' => 'Tous',
        'style' => 'margin-right: 5px',
        'escape' => false
    ]);
    echo "</div>";
    */
    //echo $this->Form->create('Materiel', ['url' => '/materiels/find']);
    /*
    echo $this->Form->create('Materiel', ['action' => 'index', '?'=>$params]);
    echo '<input name="searchfor" class="form-control mr-2 mr-sm-2 col-8 col-sm-6 col-md-6 col-lg-9" type="search" placeholder="Recherche (matériels)" aria-label="Search" id="MaterielSAll barre">';
    echo $this->Form->button('Chercher', [ 'class'=>'btn btn-outline-success', 'type'=>'submit', 'name' => 'MaterielSAll', 'id' => 'MaterielSAll', 'style' => 'margin: 0px;' ]);
    echo $this->Form->end();
    */
    // Bien mais insuffisant car les autres paramètres (page, age, domain, sont perdus)
     echo $this->Form->create('Materiel', [
        // OK mais renvoie sur la vue materiesl/find/ alors qu'on veut rester sur la liste des materiels
        //'url' => '/materiels/find'
        //'url' => '/materiels/index?searchfor='.$this->request->getQuery('searchfor'),
        'type' => 'get',
        //'valueSources' => 'query'
        'url' => [
            'action' => "index",
            //'?' => $params
        ]
     ]);
     //echo '<input name="s_all_2" class="search-input" type="text" id="MaterielSAll">';
     //echo $this->Form->control('s_all_2', [
     echo $this->Form->control('searchfor', [
         'id' => 'MaterielSAll',
         'class' => 'search-input',
         'label' => 'Filtrer',
         //'type' => 'text',
         'placeholder' => "Entrez un ou plusieurs mots séparés par un espace",
         'default' => $searchfor,
     ]);
     // (EP 202007) Ajouter un champ caché pour chaque paramètre passé dans l'url
     // afin de ne pas les perdre...
     //$parameters = ['aff', 'age', 'domaine', 'status', 'projet'];
     $parameters = ['nblines', 'age', 'domaine', 'status', 'projet'];
     foreach ($parameters as $param)
         if (isset($params[$param])) 
             echo $this->Form->hidden($param, [
                 'value' => $params[$param]
             ]);
     /*
     $param = 'age';
     echo $this->Form->hidden($param, [
         'value' => isset($params[$param]) ? $params[$param] : null
     ]);
     $param = 'domain';
     echo $this->Form->hidden($param, [
         'value' => isset($params[$param]) ? $params[$param] : null
     ]);
     $param = 'status';
     echo $this->Form->hidden($param, [
         'value' => isset($params[$param]) ? $params[$param] : null
     ]);
     */
     /*
     echo $this->Form->submit('Chercher', [
     'name' => 'MaterielSAll',
     'id' => 'MaterielSAll',
     'style' => 'margin: 0px;'
     ]);
     */
     echo $this->Form->end();
};





$displayExportCurrentButton = function($params, $html) {
    echo $html->link(
        'Exporter toute la liste courante (filtrage en cours)',
        // URL
        [
            //'action' => 'index',
            '?' => array_merge($params, ['exportcurrent'=>1]),
            //'?' => null
            //'_full' => true // pour des URLs absolues
        ], 
        // Style et tooltip
        [
            //'class' => 'button',
            'class' => "btn btn-outline-success btn-default",
            'title' => 'Exporter la liste courante (avec les paramètres sélectionnés en cours)',
            //'style' => 'margin-right: 0px',
            //'escape' => false
        ]
    );
}; // displayExportCurrentButton()






$displayStatusButtons = function($HAS_ORDER_BUTTON, $SELECTED_STATUS, $params, $nbMateriels, $statuses_color, $html) {
    ?>
    <div class="actions" style="width: 100%; float: none; padding: 0 0;">
    <?php
    echo '<p>';
    echo "Afficher les matériels : ";
    echo '</br>';
    echo '</br>';
    $b_all = $b_cre = $b_tbo = $b_val = $b_tba = $b_arc = '';
    $SELECTED = '<i class="icon-ok"></i>';
    //if (isset($SELECTED_STATUS)) {
    if ($SELECTED_STATUS) {
        if ($SELECTED_STATUS == 'CREATED')
            $b_cre = $SELECTED;
        elseif ($SELECTED_STATUS == 'TOBEORDERED')
            $b_tbo = $SELECTED;
        elseif ($SELECTED_STATUS == 'VALIDATED')
            $b_val = $SELECTED;
        elseif ($SELECTED_STATUS == 'TOBEARCHIVED')
            $b_tba = $SELECTED;
        elseif ($SELECTED_STATUS == 'ARCHIVED')
            $b_arc = $SELECTED;
    } else $b_all = $SELECTED;
        
    
    //debug($params);
    /*
     * Affichage des boutons de filtrage par statut (en haut de la page)
     */ 

    $statuses = [
        'TOUS' => [$b_all, 'TOUS', 'Tous les matériels', 5],
        'CREATED' => [$b_cre, 'À VALIDER', 'Seulement les matériels créés (à valider)', 5]
    ];
    if ($HAS_ORDER_BUTTON) $statuses['TOBEORDERED'] = [$b_tbo, 'EN COMMANDE', 'Seulement les matériels commandés (à valider)', 5];
    $statuses['VALIDATED'] = [$b_val, 'VALIDÉS', "Seulement les matériels validés", 5];
    $statuses['TOBEARCHIVED'] = [$b_tba, 'À SORTIR', "Seulement les matériels à archiver", 5];
    $statuses['ARCHIVED'] = [$b_arc, 'ARCHIVÉS', "Seulement les matériels sortis de l'inventaire", 0];

    // https://book.cakephp.org/3/en/views/helpers/html.html#creating-links
    foreach ($statuses as $status=>$status_params) {
        $i=-1;
        if ($status=='TOUS') {
            $status=null;
            $color = 'black';
        }
        else 
            $color = $statuses_color[$status];
        echo $html->link($status_params[++$i].' '.$status_params[++$i], [
            //'action' => 'index',
            //'CREATED',
            //'?' => ['height' => 400, 'width' => 500]
            //'?' => $params + ['status'=>'CREATED']
            '?' => array_merge($params, ['status'=>$status])
            //'?' => null
            //[$args],
            //"http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']
        ], [
            'title' => $status_params[++$i],
            //'style' => 'margin-right: 5px',
            'style' => 'color:'.$color.' ; margin-right: '.$status_params[++$i].'px',
            'escape' => false
        ]);
    }
    
    echo '</p>';
    
    // ACTIONS : buttons "Tout selectionner", "Tout decocher"
    // - show only with "A valider" and "A sortir"
    if ($SELECTED_STATUS && $nbMateriels>0) {
        echo $html->link('<i class="icon-check"></i> Tout cocher', '#all', [
            'onclick' => 'selectAll()',
            'title' => 'Sélectionner tout les matériels',
            'style' => ': 400px; margin-right: 50px',
            'escape' => false
        ]);
        echo $html->link('<i class="icon-check-empty"></i> Tout décocher', '#none', [
            'onclick' => 'selectNone()',
            'title' => 'Sélectionner aucun matériel',
            'style' => 'margin-right: 50px',
            'escape' => false
        ]);
    }
    
    echo "</div>";

}; // displayStatusButtons()


//$displaySelectors = function($form, $request,
$displayFilters = function($form, $request, 
    $df,
    /*
    $displayNbLinesSelector, 
    $displayAgeSelector,
    */
    //$f1_func,
    //$f1_func,
    $f1_name, $f1_label, $f1_options,
    //$f2_func, $f2_options,
    $f2_name, $f2_label, $f2_options,
    //$displayDomaineSelector, $domain_options, 
    //$displayProjetSelector, $projet_options
    $f3_name, $f3_label, $f3_options,
    $f4_name, $f4_label, $f4_options
) {
    //echo '<div>';
    echo '<div class="col-lg-2 col-md-3 col-sm-4">';
    echo '<table><tr>';
        
        // Filtre 1
        echo '<td>';
        //$displayNbLinesSelector($form, $request);
        //$f1_func($form, $request);
        $df($f1_name, $f1_label, $form, $request, $f1_options);
        echo '</td>';
        
        // Filtre 2
        echo '<td>';
        //$displayAgeSelector($form, $request);
        //$f2_func($form, $request, $f2_options);
        $df($f2_name, $f2_label, $form, $request, $f2_options);
        echo '</td>';

        // Filtre 3
        echo '<td>';
        //$displayDomaineSelector($form, $request, $domain_options);
        //$df('domain', $form, $request, $domain_options);
        $df($f3_name, $f3_label, $form, $request, $f3_options);
        echo '</td>';

        // Filtre 4
        echo '<td>';
        //$displayProjetSelector('projet', $form, $request, $projet_options);
        //$df('projet', $form, $request, $projet_options);
        $df($f4_name, $f4_label, $form, $request, $f4_options);
        echo '</td>';
        
    echo '</tr></table>';
    echo '</div>';
};

/*
$displayNbLinesSelector = function($form, $request, $options) {
    //echo '<div class="col-lg-2 col-md-3 col-sm-4">';
    //echo $this->Form->create('materiels', [
    // echo $this->Form->create('materiels', ['url' => '/materiels/execActions?page=index']);
    //echo $this->Form->control('aff_par_defaut', [
    echo $form->control('aff_par_defaut', [
        'label' => 'Nombre lignes',
        'onchange' => "updateUrlWithSelectedValue('aff-par-defaut', 'aff')",
        'options' => $options,
    ]);
    //echo '</div>';
}; // displayNbLinesSelector()

$age_options = [
     '0' => 'Tous',
     '5' => 'Récents (5 ans max)',
     '10' => '5-10 ans',
     '15' => '10-15 ans',
     '20' => '15-20 ans',
     //'20plus' => '+ 20 ans',
     '21' => '+ 20 ans',
     //'unknown' => 'inconnu',
     '-1' => 'inconnu',
];

$displayAgeSelector = function($form, $request, $options) {
    //echo '<div class="col-lg-2 col-md-3 col-sm-4">';
    echo $form->control('age_selector', [
        'label' => 'Age',
        'onchange' => "updateUrlWithSelectedValue('age-selector', 'age')",
        'options' => $options,
        'default' => '0',
        // Inutile car géré via javascript
        //'default' => '5',
    ]);
    //echo '</div>';
}; // $displayAgeSelector()

$displayDomaineSelector = function($form, $request, $options) {
    //echo '<div class="col-lg-2 col-md-3 col-sm-4">';
    echo $form->control('domain_selector', [
        'label' => 'Domaine',
        'onchange' => "updateUrlWithSelectedValue('domain-selector', 'domain')",
        'options' => $options,
        // Inutile car géré via javascript
        'default' => 0,
    ]);
    //echo '</div>';
};

$displayProjetSelector = function($form, $request, $options) {
    //echo '<div class="col-lg-2 col-md-3 col-sm-4">';
    echo $form->control('projet_selector', [
        'label' => 'Projet',
        'onchange' => "updateUrlWithSelectedValue('projet-selector', 'projet')",
        'options' => $options,
        // Inutile car géré via javascript
        'default' => 0,
    ]);
    //echo '</div>';
};

$displayProjetSelector = function($filter_name, // 'projet' 
        $form, $request, $options
    ) {
    //echo '<div class="col-lg-2 col-md-3 col-sm-4">';
    $html_filter_name = $filter_name.'-selector';
    //echo $form->control('projet_selector', [
    echo $form->control($filter_name.'_selector', [ // 'projet_selector'
    //'label' => 'Projet',
    'label' => ucfirst($filter_name), // 'Projet'
    //'onchange' => "updateUrlWithSelectedValue('projet-selector', 'projet')",
    //'onchange' => "updateUrlWithSelectedValue($filter_name.'-selector', $filter_name)", // ('projet-selector', 'projet')
    'onchange' => "updateUrlWithSelectedValue('$html_filter_name', '$filter_name')", // ('projet-selector', 'projet')
    'options' => $options,
    // Inutile car géré via javascript
    'default' => 0,
    ]);
    //echo '</div>';
};
*/

$displayFilter = function($filter_name, $filter_label,// 'projet'
    $form, $request, $options
    ) {
        //echo '<div class="col-lg-2 col-md-3 col-sm-4">';
        $html_filter_name = $filter_name.'-selector';
        //echo $form->control('projet_selector', [
        echo $form->control($filter_name.'_selector', [ // 'projet_selector'
        //'label' => 'Projet',
        'label' => $filter_label ? $filter_label : ucfirst($filter_name), // 'Projet'
        //'onchange' => "updateUrlWithSelectedValue('projet-selector', 'projet')",
        //'onchange' => "updateUrlWithSelectedValue($filter_name.'-selector', $filter_name)", // ('projet-selector', 'projet')
        'onchange' => "updateUrlWithSelectedValue('$html_filter_name', '$filter_name')", // ('projet-selector', 'projet')
        'options' => $options,
        // Inutile car géré via javascript
        'default' => 0,
        ]);
        //echo '</div>';
};





$displayActionButtonsForSelectedOrAllElements = function(
    $form, 
    $SELECTED_STATUS, 
    $USER_IS_RESPONSABLE, $USER_IS_ADMIN_OR_MORE, $USER_IS_SUPERADMIN, 
    $displayExportCurrentButton, $params) {

    //if (isset($SELECTED_STATUS)) {
    if ($SELECTED_STATUS) {
        switch ($SELECTED_STATUS) {
            case 'CREATED':
                $action = 'Valider les';
                break;
            case 'TOBEORDERED':
                $action = "Valider les";
                break;
            case 'VALIDATED':
                $action = "Demander l'archivage des";
                break;
            case 'TOBEARCHIVED':
                $action = "Sortir les";
                break;
        }
        
        if ($SELECTED_STATUS != 'ARCHIVED') {
            //if (! ($role == 'Super Administrateur' && $SELECTED_STATUS == 'TOBEARCHIVED')) {
            if (! ($USER_IS_SUPERADMIN && $SELECTED_STATUS=='TOBEARCHIVED') ) {
                //echo $this->Form->submit($action . ' matériels cochés', [
                //    'name' => 'updateSelectedStatus',
                //    'id' => 'updateSelectedStatus',
                //    'style' => 'margin: 0px'
                //]);
                //echo $this->Form->button($action . ' matériels cochés', [ 'class'=>'btn btn-outline-success', 'type'=>'submit', 'name' => 'updateSelectedStatus', 'id' => 'updateSelectedStatus', 'style' => 'margin: 0px']);
                echo $form->button($action . ' matériels cochés', [ 'class'=>'btn btn-outline-success', 'type'=>'submit', 'name' => 'updateSelectedStatus', 'id' => 'updateSelectedStatus', 'style' => 'margin: 0px']);
                echo "<br /><br />";
            }
        }
        //echo $this->Form->submit('Exporter la liste des matériels cochés', [
        //    'name' => 'export',
        //   'id' => 'export',
        //    'style' => 'margin: 0px;'
        //]);
        echo $form->button('Exporter la liste des matériels cochés', ['class'=>'btn btn-outline-success', 'type'=>'submit', 'name' => 'export', 'id' => 'export', 'style' => 'margin: 0px;' ]);
        echo "<br /><br />";
    } // if $SELECTED_STATUS
    
    if ($USER_IS_ADMIN_OR_MORE || $USER_IS_RESPONSABLE) {
        //echo $this->Form->submit('Exporter la liste complete', [
        //    'name' => 'exportAll',
        //    'id' => 'exportAll',
        //    'style' => 'margin: 0px;'
        //]);
        
        $displayExportCurrentButton($params, $this->Html);
        echo '<br/><br/>';
        
        echo $form->button('Exporter la liste complète (tous les matériels NON archivés)', ['class'=>'btn btn-outline-success', 'type'=>'submit', 'name' => 'exportAll', 'id' => 'exportAll', 'style' => 'margin: 0px;']);
    }
    
}; // $displayActionButtonsForSelectedOrAllElements()


    
/*
 * Couleurs en fonction du statut du matos
 *
 */
$displayLegend = function() {
    // CREATED => bleu
    // VALIDATED => vert
    // TBA => orange
    // ARCHIVED => rouge
    //echo "<p><i><b><u>Couleur</u> :</b> <div>bleu=à valider</div> ; vert=validé ; orange=à sortir ; rouge=archivé (couleur date rouge = fin garantie)</i></p>";
    //echo "<p><i><b><u>Statut</u> :</b> <i><b>C</b>(réé)=Matériel à commander</i> ; <i><b>V</b>(alidé)=Matériel livré</i> ; <i><b>TBA</b>=à sortir</i> ; <i><b>A</b>=Archivé</i> ; </p>";
    //echo "<p><i><b><u>Couleur</u> :</b> <i style='color:blue'>bleu=à valider</i> ; <i style='color:green'>vert=validé</i> ; <i style='color:orange'>orange=à sortir</i> ; <i style='color:red'>rouge=archivé</i> ; couleur date rouge = <i style='color:red'>fin garantie</i></i></p>";
    echo "<p><i><b><u>Couleur</u> :</b> 
        <i style='color:orange'>orange=créé (à valider)</i> ; 
        <i style='color:red'>rouge=en commande (à valider) ou à sortir</i> ; 
        <i style='color:black'>noir=livré (validé)</i> ;" 
        //<i style='color:red'>rouge=à sortir</i> ; 
        ." <i style='color:blue'>bleu=archivé</i> ; 
        (couleur date : <i style='color:red'>rouge=fin garantie</i>, <i style='color:orange'>orange=< 1 an</i>)
        </i></p>";
};





/*
 * On récupère les paramètres passés actuellement à l'URL (age, domain, searchfor...)
 * afin de les rappeler quand on clique sur les boutons de filtrage
 */
//$args = explode('?',$_SERVER['REQUEST_URI']);
//$args = count($args)==2 ? '?'.$args[1] : null;
$params = $this->request->getParam('?');
if (!$params) $params=[];
// S'il y a des paramètres, supprimer le paramètre 'page' car inapproprié
if ($params) unset($params['page']);


?>






<!--
****************************************************************************** 
                                PAGE WEB HTML
****************************************************************************** 
-->

<div class="materiels index col-lg-12 col-md-12 col-sm-12">


<!--  TITRE -->
<?php echo '<h2><i class="icon-list"></i> Liste des matériels ('.$nbMateriels.')</h2>'; ?>

<!--  BOUTONS STATUT (admin+ only) 
<div class="actions" style="width: 100%; float: none; padding: 0 0;">
-->
<?php
/*echo '<p>';
echo $this->Html->link('<i class="icon-plus"></i> Nouveau Matériel', [
    'action' => 'add'
], [
    'title' => 'Ajouter un matériel',
    'escape' => false
]);
echo '</p>';*/
//if ($USER_IS_ADMIN_OR_MORE) $displayExportCurrentButton($SELECTED_STATUS, $params, $nbMateriels, $this->Html);

if ($USER_IS_ADMIN_OR_MORE) $displayStatusButtons($HAS_ORDER_BUTTON, $SELECTED_STATUS, $params, $nbMateriels, $statuses_color, $this->Html);
//</div>


// <!-- SELECTEURS : NOMBRE LIGNES PAR PAGE et AGE -->
//$displaySelectors(
$displayFilters(
    $this->Form, $this->request, 
    $displayFilter, 
    //$displayNbLinesSelector, 
    'nblines', 'Lignes par page', $nblines_options,
    //$displayAgeSelector, $age_options,
    'age', '', $age_options,
    //$displayDomaineSelector, $domain_options, 
    //$displayProjetSelector, $projet_options
    'domaine', '', $domaine_options,
    'projet', '', $projet_options
);
//$displayNbLinesSelector($this->Form, $this->request);


// Formulaire de RECHERCHE de materiels

// Search field
echo "\n";
echo "\n";
$displaySearchField($params, $searchfor, $this->Html, $this->Form);
echo "\n";
echo "\n";



// <!-- AFFICHAGE DES MATERIELS -->

if ($nbMateriels == 0) echo 'Aucun matériel';

else {

// <FORM> DEBUT FORMULAIRE
echo $this->Form->create('materiels', [
    'url' => '/materiels/execActions?page='.$this->request->getQuery('page')
]);

    // $form2 = $this->Form;
    // /echo $this->Form->create('materiels', ['url' => '/materiels/execActions']);
    if ($SELECTED_STATUS) echo $this->Form->hidden('what', ['value'=>$SELECTED_STATUS]);
    
	// - Légende
	$displayLegend();
    ?>
    
	<!-- 
	 Affichage de la liste des matériels (table headers + data)
	 --> 
	<?php
	//<table style="border-collapse: separate; border-spacing: 0;">
	//$METRO = true;
	// fetch from src/Template/Element/materiels_list.ctp
	//echo $this->element('materiels_list_headers',
	echo $this->element('materiels_list', [
        //'HEADERS' => true,
        'SELECTED_STATUS' => $SELECTED_STATUS,
        //'HAS_COL_METRO' => true,
        'METRO' => $METRO,
    ]);
    //</table>
	?>
        
    <?php 
	// - Légende, Boutons actions, et Pagination
	//$displayLegend();
    $displayActionButtonsForSelectedOrAllElements(
        $this->Form, 
        $SELECTED_STATUS, 
        $USER_IS_RESPONSABLE, $USER_IS_ADMIN_OR_MORE, $USER_IS_SUPERADMIN,
        $displayExportCurrentButton, $params, $nbMateriels
    );
    echo $this->element('pagination_with_first_and_last'); 

// </FORM>
$this->Form->end();

} // (nbMateriels>0) 


?>
</div>


<!--
<div class="actions">
			<php echo $this->element('menu') ?>
			<php

echo $this->element('menu_index', [
    'pluralHumanName' => 'Matériels',
    'singularHumanName' => 'Matériel'
])?>
</div>
-->









<!--
****************************************************************************** 
                                JAVASCRIPT
****************************************************************************** 
-->

<script type="text/javascript">

/*
// Pour changer l'url lorsque le nombre de lignes souhaité est modifié
//$(document).ready(function () {
$(document).ready(onSelectNbLines);
function onSelectNbLines() {
	$("#aff-par-defaut").bind("change", function (event) {
		var nbr=$("#aff-par-defaut :selected").val();
		var urlDeBase = window.location.href.split("?");
		var urlDecoupee = window.location.search.split("&"), i, j; // On sépare la chaine des paramètres en fonction du &
		var urlDecoupeeBis = new Array();
		var param = 0;
		var bool = false;
		//console.log(nbr);
		
		for(i=0; i<urlDecoupee.length; ++i) {
			urlDecoupeeBis[i] = urlDecoupee[i].split("="); // On sépare les parametres de leurs valeurs
			for(j=0; j<urlDecoupeeBis[i].length; ++j){
				if(urlDecoupeeBis[i][0] == "aff" || urlDecoupeeBis[i][0] == "?aff") {
					//console.info('toto');
					bool = true;
					param = i; // Si le parametre "aff" est trouvé, on le récupère
					break;
				}
			}
		}
		
		if(bool) { // Si le parametre recherché a ete trouvé, ...
			//console.log("coucouT");
			urlDecoupeeBis[param][1] = nbr; //urlDecoupeeBis[i][0] c'est le nom du parametre, et urlDecoupeeBis[i][1] c'est la valeur associée 
			var url = "";
			for(i=0; i<urlDecoupee.length; ++i) { //...  on reconstruit une url propre ...
				*/
				//////if(/^\?[a-zA-A0-9]*/.test(urlDecoupeeBis[0][0])) {
				/*
					if(i!=0) url += "&";
					// Sauf pour le 1er parametre, qui lui commence par un "?"
				} else url += "&";
				url += urlDecoupeeBis[i][0]+"="+urlDecoupeeBis[i][1];
				// On reforme les parametres "&nom=valeur" en les concatenant
			}
			window.location.href = urlDeBase[0]+url; // ... et on fait la redirection
		} else if(urlDecoupee[0]=="") window.location.href = window.location.href + '?aff=' + nbr; // Sinon on joute juste le parametre en fin d'url
		else window.location.href = window.location.href + '&aff=' + nbr;

	});
}
//);
*/

// Pour changer l'url lorsque l'age est modifié
//$(document).ready(function () {
/*
$(document).ready(onSelectAge);
function onSelectAge() {
	$("#age-selector").bind("change", function (event) {
*/
//$(document).ready($("#age-selector").onchange = onSelectAge);
//function changeAge(select_name, param_name) {
function updateUrlWithSelectedValue(select_name, param_name) {
	//$("#age-selector").bind("change", function (event) {
		
		// Exemple pour http://labinvent.devv/materiels/index/CREATED?aff=30&age=5&page=3 :
		
		// 5
		//var param_val=$("#age-selector :selected").val();
		selected_elem = "#" + select_name + " :selected";
		var param_val = $(selected_elem).val();

		// Array [ "http://labinvent.devv/materiels/CREATED", "aff=30&age=15&page=3" ]
		// Array [ "http://labinvent.devv/materiels/CREATED" ] s'il n'y a aucun argument (pas de chaine commençant par "?...")
		var urlDeBase = window.location.href.split("?");

		// Array [ "?aff=30", "age=15", "page=3" ]
		// Array [ "" ] si pas d'argument passé
		var args = window.location.search.split("&");

		var i; //, j; 
		//var param = 0;
		//var bool = false;
		//var argsBis = new Array();
		var argsBis = [];

		//console.log(param_val, args);

		// Si pas d'argument (paramètre) passé, args[0] = '' => on ne fait rien
		if (args[0]=='') args = [];
		//console.log(args);
		
		for(i=0; i<args.length; ++i) {
			// On sépare les parametres de leurs valeurs
			// ex: 
			argsBis[i] = args[i].split("=");
			/*
			for(j=0; j<argsBis[i].length; ++j){
				if(argsBis[i][0] == "age" || argsBis[i][0] == "?age") {
					bool = true;
					param = i; // Si le parametre "age" est trouvé, on le récupère
					break;
				}
			}
			*/
		}
		// Resultat :
		/*
		0: Array [ "?aff", "30" ]
		1: Array [ "age", "20" ]
		2: Array [ "page", "3" ]
		*/
		//console.log(argsBis);
		
		//if(bool) { // Si le parametre recherché a ete trouvé
		//argsBis[param][1] = age; //argsBis[i][0] c'est le nom du parametre, et argsBis[i][1] c'est la valeur associée 
		var oldargs = '';
		for(i=0; i<args.length; ++i) { //...  on reconstruit une url propre ...
			// On ne conserve pas l'argument de pagination (page=x) car les données ne seront plus les mêmes et cette page risque de ne plus exister => ERROR 
			// On ne conserve pas non plus l'argument 'age' car on va l'ajouter en tête des arguments 
			arg_name = argsBis[i][0];
			// Si "?arg" on supprime le ?
			if (arg_name.startsWith('?')) arg_name = arg_name.substring(1); 
			//if (['page','age'].includes(arg_name)) continue;
			if (['page', param_name].includes(arg_name)) continue;
			/*
			if (argsBis[i][0] == 'page') continue;
			if (argsBis[i][0] == 'age') continue;
			*/ 
			//if(/^\?[a-zA-A0-9]*/.test(argsBis[0][0])) {
			//	if(i!=0) oldargs += "&";
				// Sauf pour le 1er parametre, qui lui commence par un "?"
			//}
			//else oldargs += "&";
			/*
			// "&arg=valeur", sauf pour le 1er paramètre (pas de '&')
			if (i > 0) oldargs += "&";
			oldargs += arg_name + "=" + argsBis[i][1];
			*/
			oldargs += '&' + arg_name + "=" + argsBis[i][1];
			// On reforme les parametres "&nom=valeur" en les concatenant
		}
		//window.location.href = urlDeBase[0]+oldargs; // ... et on fait la redirection
		//} 
		//else if(args[0]=="") window.location.href = window.location.href + '?age=' + age; // Sinon on ajoute juste le parametre en fin d'url
		//else window.location.href = window.location.href + '&age=' + age;
		//console.log(urlDeBase[0]);
		//console.log(urlDeBase[0] + '?age='+age + oldargs);
		//new_url = urlDeBase[0] + '?age='+age + oldargs;
		new_url = urlDeBase[0] + '?'+param_name+'='+param_val+ oldargs;
		//if (oldargs) new_url += oldargs;
		window.location.href = new_url;

	//});
}
//);

$(document).ready(function(){
    // Actualiser l'age sélectionné si passé en paramètre de l'url
    //$(document).ready(selectAge);
    selectAge();
    // Actualiser la pagination (nombre de lignes par page) sélectionnée si passée en paramètre de l'url
    //$(document).ready(selectNbLines);
    selectNbLines();
    // Actualiser le domaine sélectionné si passé en paramètre de l'url
    //$(document).ready(selectDomain);
    //selectDomain();
    selectFilterItem('domaine');
    //selectProjet('projet');
    selectFilterItem('projet');

    
    // Remplir le champ recherche général avec le texte de la dernière recherche effectuée
    //$(document).ready(setSearchField);
    //setSearchField();
});

/*
function setSearchField() {
	var searchfor = $_GET('s_all_2');
	//console.log(searchfor);
	//if (searchfor)
	//$("#MaterielSAll").val(searchfor);
	$("#s_all_2").val(searchfor);
	//document.getElementById('s-all-2').value = searchfor
}
*/

/*
function selectDomain() {
	var domain_id = parseInt($_GET('domain'));
	//console.log(domain_id);
	// NotANumber
	if (!isNaN(domain_id))
		$("#domain-selector")[0].selectedIndex = domain_id;
		//document.getElementById('domain-selector').selectedIndex = domain_id;
    	//$("#domain-selector").val(domain_id);
    	//document.getElementById('domain-selector').value = domain;
}
*/

//function selectProjet(filter_name) {
function selectFilterItem(filter_name) {
	//var id = parseInt($_GET('projet'));
	var id = parseInt($_GET(filter_name));
	var filter_selector_name = filter_name+'-selector';
	//console.log(domain_id);
	// NotANumber
	if (!isNaN(id))
		// PAS BON : sélectionne par l'INDEX
		//$("#projet-selector")[0].selectedIndex = id;
		// OK : sélectionne par la CLÉ
		$('#'+filter_selector_name).val(id);
		//$("#projet-selector").val(id);
		//document.getElementById('domain-selector').selectedIndex = domain_id;
    	//$("#domain-selector").val(domain_id);
    	//document.getElementById('domain-selector').value = domain;
}

//$(document).ready(function () {
function selectNbLines() {
	//var nblines = parseInt($_GET('aff'));
	var nblines = parseInt($_GET('nblines'));
	//document.getElementById('aff-par-defaut').value = affichage;
	if ( [20,30,50,100,150,200].includes(nblines) ) 
		//$("#aff-par-defaut").val(nblines);
		$("#nblines-selector").val(nblines);
	else
		$("#nblines-selector").val(<?=$configuration->aff_par_defaut?>);
	/*
	switch(affichage) {
	case 20 :
		//document.getElementById('aff-par-defaut').selectedIndex = 0;
		document.getElementById('aff-par-defaut').value = 20;
		break;
	case 30 :
		document.getElementById('aff-par-defaut').selectedIndex = 1;
		break;
	case 50 :
		document.getElementById('aff-par-defaut').selectedIndex = 2;
		break;
	case 100 :
		document.getElementById('aff-par-defaut').selectedIndex = 3;
		break;
	case 150 :
		document.getElementById('aff-par-defaut').selectedIndex = 4;
		//document.getElementById('aff-par-defaut').value = 20;
		break;
	case 200 :
		document.getElementById('aff-par-defaut').selectedIndex = 5;
		break;
	default : // Par défaut, lorsque le parametre "aff" n'existe pas, au premier affichage
		$("#aff-par-defaut").val(<S echo $configuration->aff_par_defaut S>);
		// On récupère la valeur dans la BD directement, mais en PHP, faut pas déconner
		break;
	}
	*/
}
//);

//$(document).ready(function () {
function selectAge() {
	var age = parseInt($_GET('age'));
	/*
	if ( [0,5,10,15,20,21,-1].includes(age) ) 
		$("#aff-par-defaut").val(age);
	else
		$("#aff-par-defaut").val(5);
	*/
	switch(age) {
    	// TOUS
    	case 0 : $("#age-selector")[0].selectedIndex = 0; break;
    	//case 0 : document.getElementById('age-selector').selectedIndex = 0; break;
    	// 5 ans max
    	case 5 : $("#age-selector")[0].selectedIndex = 1; break;
    	//case 5 : document.getElementById('age-selector').selectedIndex = 1; break;
    	// 5-10 ans
    	case 10 : $("#age-selector")[0].selectedIndex = 2; break;
    	//case 10 : document.getElementById('age-selector').selectedIndex = 2; break;
    	// 10-15
    	case 15 : document.getElementById('age-selector').selectedIndex = 3; break;
    	//case 15 : $("#age-selector").selectedIndex = 3; break;
    	// 15-20
    	case 20 : document.getElementById('age-selector').selectedIndex = 4; break;
    	//case 20 : $("#age-selector").selectedIndex = 4; break;
    	//case '20plus' :
    	case 21 : document.getElementById('age-selector').selectedIndex = 5; break;
    	//case 21 : $("#age-selector").selectedIndex = 5; break;
    	//case 'unknown' :
    	case -1 : document.getElementById('age-selector').selectedIndex = 6; break;
    	//case -1 : $("#age-selector").selectedIndex = 6; break;
    	// Par défaut, lorsque le parametre "age" n'existe pas => 0-5 ans
    	default : document.getElementById('age-selector').selectedIndex = 1;
    	//default : $("#age-selector").selectedIndex = 1; break;
    	//default : $("#age-selector").val(5);
	}
}
//);



// La fonction suivante permet de recuperer les parametres d’une URL
function $_GET(param) {
	var vars = {};
	window.location.href.replace( location.hash, '' ).replace( 
		/[?&]+([^=&]+)=?([^&]*)?/gi, // regexp
		function( m, key, value ) { // callback
			vars[key] = value !== undefined ? value : '';
		}
	);
	
	if ( param ) {
		return vars[param] ? vars[param] : null;	
	}
	return vars;
}

</script>