Blame view

src/Template/Emprunts/index.ctp 3.02 KB
64fba1a2   Alexandre   Base du projet : ...
1

b2dade50   Prugniel   modifs Jeanne boo...
2
<div class="emprunts 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 emprunts ('.$nbEmprunts.')</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>
0ed158cd   Etienne Pallier   Page "Statistique...
11
12
13
				<!-- (EP 202007) inutile
				<th><= $this->Paginator->sort('numero_laboratoire', 'N° interne (labo)') ?></th>
				 -->
63c3cb16   epallier   Nombreux petits b...
14
15
16
				<th><?= $this->Paginator->sort('emprunt_interne', 'Type') ?></th>
				<th><?= $this->Paginator->sort('date_emprunt' ,'Date emprunt') ?></th>
				<th><?= $this->Paginator->sort('date_retour_emprunt', 'Date retour') ?></th>
64fba1a2   Alexandre   Base du projet : ...
17
				<th><?= $this->Paginator->sort('nom_emprunteur', 'Emprunteur') ?></th>
ebe38bef   Alexandre   #3586 Ajout assoc...
18
				<th><?= $this->Paginator->sort('site_id', 'Lieu stockage') ?></th>
63c3cb16   epallier   Nombreux petits b...
19
20
21
22
23


			</tr>
		</thead>
		<tbody>
6c4edfa3   Alexandre   First Commit LabI...
24
25
            <?php foreach ($emprunts as $emprunt): ?>
            <tr>
63c3cb16   epallier   Nombreux petits b...
26
				<td class="actions" style="padding: 6px 0; text-align: left;">
0ea7290f   Alexandre   Version: 2.5.4.2
27
28
                     <?php if(($role == 'Utilisateur' && in_array($username, [$emprunt->nom_createur, $emprunt->nom_emprunteur])) || (in_array($role, ['Responsable', 'Administration', 'Administration Plus', 'Super Administrateur']))) { ?>
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $emprunt->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
ed4c8419   mimelhaine   Test avant merge
29
                    <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $emprunt->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer cet emprunt ?')]) ?>
0ea7290f   Alexandre   Version: 2.5.4.2
30
31
               		<?php } ?>
                </td>
63c3cb16   epallier   Nombreux petits b...
32
33
34

				<td class="smallText"><?php echo $this->Html->link('Emprunt '.$this->Number->format($emprunt->id), ['action' => 'view', $emprunt->id])?></td>
				<td class="smallText"><?= $emprunt->has('materiel') ? $this->Html->link($emprunt->materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $emprunt->materiel->id]) : '' ?></td>
0ed158cd   Etienne Pallier   Page "Statistique...
35
36
37
				<!-- (EP 202007) inutile
				<td class="smallText"><= $emprunt->has('materiel') ? h($emprunt->materiel->numero_laboratoire) : '' ?></td>
				 -->
63c3cb16   epallier   Nombreux petits b...
38
39
40
41
				<td class="smallText"><?php if (h($emprunt->emprunt_interne) == '1') { echo 'Interne'; } else { echo 'Externe'; } ?></td>
				<td class="smallText"><?= h($emprunt->date_emprunt) ?></td>
				<td class="smallText"><?= h($emprunt->date_retour_emprunt) ?></td>
				<td class="smallText"><?= h($emprunt->nom_emprunteur) ?></td>
0ed158cd   Etienne Pallier   Page "Statistique...
42
43
44
45
46
47
48
49
				<td class="smallText">
					<?php 
				    if (h($emprunt->emprunt_interne) == '1') 
				        echo h($emprunt->site->nom).' - '.h($emprunt->e_lieu_detail);
				    else 
				        echo h($emprunt->laboratoire); 
			        ?>
				</td>
63c3cb16   epallier   Nombreux petits b...
50
51
52


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

b2dade50   Prugniel   modifs Jeanne boo...
61
<!--
63c3cb16   epallier   Nombreux petits b...
62
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
63
64
65
			<php echo $this->element('menu') ?>
		</div>
-->