index.ctp 3.72 KB

<div class="suivis index">
<?php echo '<h2><i class="icon-list"></i> Liste des suivis ('.$nbSuivis.')</h2>'; ?>
    <table style="border-collapse: separate; border-spacing: 0;">
        <thead>
            <tr>
            	<th class="actions"><?= __('') ?></th>
                <th><?= $this->Paginator->sort('id', 'N°') ?></th>
                <th><?= $this->Paginator->sort('materiel_id', 'Matériel') ?></th>
                <th><?= $this->Paginator->sort('numero_laboratoire', 'N° interne (labo)') ?></th>
				<th><?= $this->Paginator->sort('intitule', "Intitulé") ?></th>
                <th><?= $this->Paginator->sort('date_controle', 'Date intervention') ?></th>
                <th><?= $this->Paginator->sort('date_prochain_controle', 'Date prochaine intervention') ?></th>
                <th><?= $this->Paginator->sort('type_suivi_id', "Type d'intervention") ?></th>
				<th><?= $this->Paginator->sort('statut', "Statut") ?></th>
                
            </tr>
        </thead>
        <tbody>
            <?php foreach ($suivis as $suivi): ?>
            <tr>
                <td class="actions" style="padding: 6px 0; text-align: left;">
                    <?php if(($role == 'Utilisateur' && in_array($username, [$suivi->nom_createur])) || (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur']))
                    		|| ($role == 'Responsable' && 
									((isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa && $suivi->groupes_metier_id == $priviledgedUser->groupes_metier_id)
									 ||(isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa && $suivi->groupes_thematique_id == $priviledgedUser->groupe_thematique_id)))) { ?>
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $suivi->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $suivi->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $suivi->id)]) ?>
              		<?php } ?>
                </td>
                <td class="smallText"><?php echo $this->Html->link('Suivi '.$this->Number->format($suivi->id), ['action' => 'view', $suivi->id])?></td>
                <td class="smallText"><?= $suivi->has('materiel') ? $this->Html->link($suivi->materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $suivi->materiel->id]) : '' ?></td>
                <td class="smallText"><?= $suivi->has('materiel') ? h($suivi->materiel->numero_laboratoire) : '' ?></td>
				<td class="smallText"><?= h($suivi->intitule) ?></td>
                <td class="smallText"><?= h($suivi->date_controle) ?></td>
                
				<?php if ($dateProchainControleVerif($suivi->date_prochain_controle) < 0) : ?>
					<td class="smallText" style="color: red"> <?=h($suivi->date_prochain_controle)?></td>
				<?php elseif ($dateProchainControleVerif($suivi->date_prochain_controle) <= 15) : ?>
					<td class="smallText" style="color: orange"><?=h($suivi->date_prochain_controle)?></td>
				<?php else : ?>
					<td class="smallText" style="color: green"><?=h($suivi->date_prochain_controle)?></td>
				<?php endif ?>
				
                <td class="smallText"><?= $suivi->has('type_suivi') ? h($suivi->type_suivi->nom) : ''  ?></td>
                <td class="smallText"><?= h($suivi->statut) ?></td>
                

            </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
    
	<?php echo $this->element('pagination'); ?> 
    
    
</div>

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