Blame view

src/Template/Suivis/index.ctp 3.44 KB
64fba1a2   Alexandre   Base du projet : ...
1

b2dade50   Prugniel   modifs Jeanne boo...
2
<div class="suivis index col-lg-12 col-md-12 col-sm-12">
183ce554   Alexandre   Ajout de test, su...
3
<?php echo '<h2><i class="icon-list"></i> Liste des suivis ('.$nbSuivis.')</h2>'; ?>
d653b27f   Thibaud Ajas   Correction de fau...
4
    <table style="border-collapse: separate; border-spacing: 0;">
63c3cb16   epallier   Nombreux petits b...
5
6
7
8
9
10
		<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>
7bcf546d   Alexis Proust   mise a jour fichier
11
				<th><?= $this->Paginator->sort('intitule', "Intitulé") ?></th>
ed4c8419   mimelhaine   Test avant merge
12
13
				<th><?= $this->Paginator->sort('date_controle', 'Date debut / Frequence') ?></th>
				<th><?= $this->Paginator->sort('date_prochain_controle', 'Date fin / Repetition') ?></th>
63c3cb16   epallier   Nombreux petits b...
14
				<th><?= $this->Paginator->sort('type_suivi_id', "Type d'intervention") ?></th>
7bcf546d   Alexis Proust   mise a jour fichier
15
				<th><?= $this->Paginator->sort('statut', "Statut") ?></th>
63c3cb16   epallier   Nombreux petits b...
16
17
18
19

			</tr>
		</thead>
		<tbody>
6c4edfa3   Alexandre   First Commit LabI...
20
21
            <?php foreach ($suivis as $suivi): ?>
            <tr>
63c3cb16   epallier   Nombreux petits b...
22
23
24
25
26
				<td class="actions" style="padding: 6px 0; text-align: left;">
                    <?php
                
if (($role == 'Utilisateur' && in_array($username, [
                    $suivi->nom_createur
ed4c8419   mimelhaine   Test avant merge
27
28
29
30
31
32
33
					])) || ($role == 'Responsable' && in_array($username, [
							$suivi->nom_createur
						]))
							|| (in_array($role, [
                    			'Administration',
                    			'Administration Plus',
                    			'Super Administrateur'
63c3cb16   epallier   Nombreux petits b...
34
35
                ])) || ($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)))) {
                    ?>
0ea7290f   Alexandre   Version: 2.5.4.2
36
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $suivi->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
ed4c8419   mimelhaine   Test avant merge
37
                    <?= $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 ce suivi ?')]) ?>
0ea7290f   Alexandre   Version: 2.5.4.2
38
39
              		<?php } ?>
                </td>
63c3cb16   epallier   Nombreux petits b...
40
41
42
				<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>
7bcf546d   Alexis Proust   mise a jour fichier
43
				<td class="smallText"><?= h($suivi->intitule) ?></td>
ed4c8419   mimelhaine   Test avant merge
44
45
46
47
48
49
50
51
52
				
				
				<?php if ($suivi->type_suivi_id == 2 ) {?>
					<td><?=h($suivi->date_controle)?></td>
					<td><?=h($suivi->date_prochain_controle)?></td>
				<?php } else { ?>
					<td><?=h($suivi->frequence)?></td>
					<td><?=h($suivi->type_frequence)?></td>
				<?php } ?>
f84d6a61   Thibaud Ajas   ERGONOMIE - Ajout...
53
				
5d0d680d   Alexandre   Version: 2.2.0
54
                <td class="smallText"><?= $suivi->has('type_suivi') ? h($suivi->type_suivi->nom) : ''  ?></td>
63c3cb16   epallier   Nombreux petits b...
55
56
				<td class="smallText"><?= h($suivi->statut) ?></td>

0ea7290f   Alexandre   Version: 2.5.4.2
57

63c3cb16   epallier   Nombreux petits b...
58
			</tr>
6c4edfa3   Alexandre   First Commit LabI...
59
60
            <?php endforeach; ?>
        </tbody>
63c3cb16   epallier   Nombreux petits b...
61
	</table>
64fba1a2   Alexandre   Base du projet : ...
62
    
9478e982   Etienne Pallier   refactorisation d...
63
	<?php echo $this->element('pagination'); ?> 
64fba1a2   Alexandre   Base du projet : ...
64
    
64fba1a2   Alexandre   Base du projet : ...
65
    
6c4edfa3   Alexandre   First Commit LabI...
66
</div>
4260780b   Alexandre   Migration vue, co...
67

b2dade50   Prugniel   modifs Jeanne boo...
68
<!--
63c3cb16   epallier   Nombreux petits b...
69
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
70
71
72
			<php echo $this->element('menu') ?>
		</div>
-->