Liste des matériels ('.$nbMateriels.')'; ?>
'; echo $this->Html->link(' Nouveau Matériel', [ 'action' => 'add' ], [ 'title' => 'Ajouter un matériel', 'escape' => false ]); echo '

';*/ if ($USER_IS_ADMIN_OR_MORE) { echo '

'; echo "Afficher les matériels : "; echo '
'; echo '
'; $b_all = $b_cre = $b_val = $b_toarc = $b_arc = ''; $SELECTED = ''; if (isset($SELECTED_STATUS)) { if ($SELECTED_STATUS == 'CREATED') $b_cre = $SELECTED; else if ($SELECTED_STATUS == 'VALIDATED') $b_val = $SELECTED; else if ($SELECTED_STATUS == 'TOBEARCHIVED') $b_toarc = $SELECTED; else if ($SELECTED_STATUS == 'ARCHIVED') $b_arc = $SELECTED; } else $b_all = $SELECTED; // Affichage des boutons en haut de la page echo $this->Html->link($b_all . ' Tous', [ 'action' => 'index' ], [ 'title' => 'Tous', 'style' => 'margin-right: 5px', 'escape' => false ]); echo $this->Html->link($b_cre . ' A valider', [ 'action' => 'index', 'CREATED' ], [ 'title' => 'Liste des matériels créés', 'style' => 'margin-right: 5px', 'escape' => false ]); echo $this->Html->link($b_val . ' Validés', [ 'action' => 'index', 'VALIDATED' ], [ 'title' => 'Liste des materiels que l\'on peut archiver', 'style' => 'margin-right: 5px', 'escape' => false ]); echo $this->Html->link($b_toarc . ' A sortir', [ 'action' => 'index', 'TOBEARCHIVED' ], [ 'title' => 'A sortir de l\'inventaire', 'style' => 'margin-right: 5px', 'escape' => false ]); echo $this->Html->link($b_arc . ' Archivés', [ 'action' => 'index', 'ARCHIVED' ], [ 'title' => 'A sortir de l\'inventaire', 'style' => 'margin-right: 0px', 'escape' => false ]); echo '

'; // ACTIONS : buttons "Tout selectionner", "Tout decocher" // - show only with "A valider" and "A sortir" if (isset($SELECTED_STATUS) && $nbMateriels != 0) { echo $this->Html->link(' Tout cocher', '#all', [ 'onclick' => 'selectAll()', 'title' => 'Sélectionner tout les matériels', 'style' => ': 400px; margin-right: 50px', 'escape' => false ]); echo $this->Html->link(' Tout décocher', '#none', [ 'onclick' => 'selectNone()', 'title' => 'Sélectionner aucun matériel', 'style' => 'margin-right: 50px', 'escape' => false ]); } } ?>
Form->create('materiels', [ 'url' => '/materiels/execActions?page=' . $this->request->getQuery('page') ]); // echo $this->Form->create('materiels', ['url' => '/materiels/execActions?page=index']); //echo $this->Form->control('aff_par_defaut', [ echo $this->Form->control('aff_par_defaut', [ 'label' => 'Afficher', 'options' => [ '20' => 20, '30' => 30, '50' => 50, '100' => 100, '150' => 150, '200' => 200 ] ]); ?>
0) { // $form2 = $this->Form; // /echo $this->Form->create('materiels', ['url' => '/materiels/execActions']); if (isset($SELECTED_STATUS)) echo $this->Form->hidden('what', [ 'value' => $SELECTED_STATUS ]); ?> '; }?> ".$this->Paginator->sort('etiquette', 'Et')."" ?> ".$this->Paginator->sort('metrologie', 'Metro')."" ?> year-$time->month-$time->day"); // On extrait la date pour la vérification de fin de garantie $today = $today->format('Ydm'); // On formatte la date initialement en 31-12-2000 (par exemple) en un format qui pourra etre comparé : 20001231 // BOUCLE SUR CHAQUE MATERIEL, ligne par ligne //$mc = new MaterielsController(); foreach ($materiels as $materiel) : // TODO: Dans l'idéal, ces variables doivent etre définies par le controleur et passées à la vue // (sous forme d'un tableau contenant ces droits pour CHAQUE materiel) // Car la vue doit être la moins "intelligente" possible, la plus simple possible $IS_CREATED = ($materiel->status == 'CREATED'); $IS_VALIDATED = ($materiel->status == 'VALIDATED'); $IS_TOBEARCHIVED = ($materiel->status == 'TOBEARCHIVED'); $IS_ARCHIVED = ($materiel->status == 'ARCHIVED'); $USER_IS_CREATOR_OR_OWNER = in_array($username, [$materiel->nom_createur, $materiel->nom_responsable]); $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; $CONTEXT1 = $USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL; // Détermination des autorisations pour tous les boutons "éditer", "supprimer", "valider", ... $id = $materiel->id; $CAN_EDIT = $controller->isAuthorizedAction('edit', $id); //$CAN_EDIT = $IS_CREATED && ($USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL); //$CAN_EDIT = $IS_CREATED && ($USER_IS_ADMIN_OR_MORE || $USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL || $USER_IS_RESPONSABLE_AND_CREATOR_OR_OWNER); $CAN_DELETE = $controller->isAuthorizedAction('delete', $id); //$CAN_DELETE = $CAN_EDIT; /* $CAN_VALIDATE_OR_INVALIDATE = $USER_IS_ADMIN_OR_MORE || ( ($materiel->materiel_administratif == 0) && $USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL ); $CAN_VALIDATE = $IS_CREATED && $CAN_VALIDATE_OR_INVALIDATE; $CAN_INVALIDATE = !$IS_CREATED && $CAN_VALIDATE_OR_INVALIDATE; $CAN_TBA = $IS_VALIDATED && ($USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || ($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL)); $CAN_ARCHIVE = $IS_TOBEARCHIVED && $CAN_VALIDATE_OR_INVALIDATE; */ $CAN_INVALIDATE = $controller->isAuthorizedAction('statusCreated', $id); $CAN_VALIDATE = $controller->isAuthorizedAction('statusValidated', $id); $CAN_TBA = $controller->isAuthorizedAction('statusTobearchived', $id); $CAN_ARCHIVE = $controller->isAuthorizedAction('statusArchived', $id); // Date fin garantie ? if ($materiel->date_fin_garantie !== NULL) { $timeFin = new time($materiel->date_fin_garantie); $dateFin = new date("$timeFin->year-$timeFin->month-$timeFin->day"); $dateFin = $dateFin->format('Ydm'); } if ($materiel->date_fin_garantie !== NULL) $styleLien = ($today >= $dateFin) ? 'style="color: #FF0000"' : ''; else $styleLien = ''; ?> ' . $this->Form->checkbox($materiel->id, [ 'style' => 'margin: 3px', 'id' => $materiel->id ]) . ''; } ?> status)) { case 'CREATED': $statut = 'C'; break; case 'VALIDATED': $statut = 'V'; break; case 'TOBEARCHIVED': $statut = 'TBA'; break; case 'ARCHIVED': $statut = 'A'; break; default: $statut = ''; break; } ?> '. (h($materiel->metrologie)=='1' ? 'Y':'N').''; ?>
Paginator->sort('designation','Désignation') ?> Paginator->sort('numero_laboratoire', 'N° interne (labo)') ?> paginator->sort('hors_service', ' ') ?> Paginator->sort('categorie_id', 'Catégorie') ?> Paginator->sort('organisme_id', 'Org.') ?> Paginator->sort('numero_inventaire_organisme', 'N° Invent. Org.') ?> Paginator->sort('nom_responsable', 'Nom de l\'utilisateur') ?> Paginator->sort('status', 'Statut') ?> Paginator->sort('date_acquisition', 'Date Achat') ?>
status, [ 'CREATED', // (EP 17/5/19) ben non, on peut pas si c'est validé !!! //'VALIDATED' ]) && ( $USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || ($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL) ) ) */ if ($CAN_EDIT) echo $this->Html->link(__(''), ['action' => 'edit', $materiel->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]); // 2) VALIDER/TBA/ARCHIVER icon /* if ( $USER_IS_ADMIN || ($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL) ) { */ //if ($materiel->status=='CREATED' && !$USER_IS_RESPONSABLE) { if ($CAN_VALIDATE) echo $this->Html->link('', [ 'action' => 'statusValidated', $materiel->id ], [ 'title' => 'Valider', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => 'Êtes-vous sur de vouloir valider ' . $materiel->designation . ' ?' ]); //else if (h($materiel->status) == 'VALIDATED') { if ($CAN_TBA) echo $this->Html->link('', [ 'action' => 'statusTobearchived', $materiel->id ], [ 'title' => 'Demander la sortie de l\'inventaire', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => 'Êtes-vous sur de vouloir faire une demande d\'archive ' . $materiel->designation . ' ?' ]); //else if ($materiel->status=='TOBEARCHIVED' && !$USER_IS_RESPONSABLE) if ($CAN_ARCHIVE) echo $this->Html->link('', [ 'action' => 'statusArchived', $materiel->id ], [ 'title' => 'Sortir de l\'inventaire', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => 'Êtes-vous sur de vouloir archiver ' . $materiel->designation . ' ?' ]); // 3) DELETE icon /* if (h($materiel->status) == 'CREATED') { if ( $USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || ($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL) ) */ if ($CAN_DELETE) echo $this->Html->link(__(''), [ 'action' => 'delete', $materiel->id ], [ 'title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer {0} ?', $materiel->designation) ]); ?> has('designation') ? $this->Html->link($materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $materiel->id],[$styleLien]) : '' ?> numero_laboratoire) ?> hors_service) ? 'HS' : '' ?> has('category') ? h($materiel->category->nom) : '' ?> has('organisme') ? h($materiel->organisme->nom) : '' ?> numero_inventaire_organisme) ?> nom_responsable) ?> date_acquisition) ?> etiquette)=='1' ? 'Y':'N' ?>
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 "

"; } } //echo $this->Form->submit('Exporter la liste des matériels cochés', [ // 'name' => 'export', // 'id' => 'export', // 'style' => 'margin: 0px;' //]); echo $this->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 "

"; } if ($USER_IS_ADMIN_OR_MORE || $USER_IS_RESPONSABLE) //echo $this->Form->submit('Exporter la liste complete', [ // 'name' => 'exportAll', // 'id' => 'exportAll', // 'style' => 'margin: 0px;' //]); echo $this->Form->button('Exporter la liste complete', ['class'=>'btn btn-outline-success', 'type'=>'submit', 'name' => 'exportAll', 'id' => 'exportAll', 'style' => 'margin: 0px;']); echo $this->element('pagination_with_first_and_last'); $this->Form->end(); } else { echo 'Aucun matériel'; } ?>