Blame view

src/Template/Materiels/index.ctp 5.14 KB
64fba1a2   Alexandre   Base du projet : ...
1
<div class="materiels index">
4260780b   Alexandre   Migration vue, co...
2
<?php echo '<h2><i class="icon-list"></i> Liste des matériels ('.$nbMateriels.')</h2>'; ?>
6c4edfa3   Alexandre   First Commit LabI...
3
4
5
    <table cellpadding="0" cellspacing="0">
        <thead>
            <tr>
64fba1a2   Alexandre   Base du projet : ...
6
7
8
9
10
11
12
13
14
15
                <th><?= $this->Paginator->sort('designation','Désignation') ?></th>
                <th><?= $this->Paginator->sort('numero_laboratoire', 'N° interne (labo)') ?></th>
                <th><?= $this->Paginator->sort('categorie_id', 'Catégorie') ?></th>
                <th><?= $this->Paginator->sort('organisme_id', 'Org.') ?></th>
                <th><?= $this->Paginator->sort('numero_inventaire_organisme', 'N° Invent. Org.') ?></th>
                <th><?= $this->Paginator->sort('nom_responsable', 'Responsable') ?></th>
                <th><?= $this->Paginator->sort('status', 'Statut') ?></th>
                <th><?= $this->Paginator->sort('date_acquisition', 'Date Achat') ?></th>
                <th><?= $this->Paginator->sort('etiquette', 'Et') ?></th>
                <th class="actions"><?= __('') ?></th>
a97b5772   Alexandre   Migration fonctio...
16
17
                <th class="actions"><?= __('') ?></th>
                <th class="actions"><?= __('') ?></th>
6c4edfa3   Alexandre   First Commit LabI...
18
19
20
21
22
            </tr>
        </thead>
        <tbody>
            <?php foreach ($materiels as $materiel): ?>
            <tr>
4cfbc551   Alexandre   Correction vue in...
23
 				<td><?= $materiel->has('designation') ? $this->Html->link($materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $materiel->id]) : '' ?></td>
6c4edfa3   Alexandre   First Commit LabI...
24
                <td><?= h($materiel->numero_laboratoire) ?></td>
64fba1a2   Alexandre   Base du projet : ...
25
26
                <td><?= $materiel->has('category') ? h($materiel->category->nom) : '' ?></td>
                <td><?= $materiel->has('organisme') ? h($materiel->organisme->nom) : '' ?></td>
6c4edfa3   Alexandre   First Commit LabI...
27
                <td><?= h($materiel->numero_inventaire_organisme) ?></td>
6c4edfa3   Alexandre   First Commit LabI...
28
                <td><?= h($materiel->nom_responsable) ?></td>
64fba1a2   Alexandre   Base du projet : ...
29
30
31
32
33
34
                <td><?= h($materiel->status) ?></td>
                <td><?= h($materiel->date_acquisition) ?></td>
                <td><?php if (h($materiel->etiquette) == '1') { echo 'Y'; } else { echo 'N'; } ?></td>

                <td class="actions" style="padding: 6px 0;">
                    <?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $materiel->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
a97b5772   Alexandre   Migration fonctio...
35
36
                </td>
                <td class="actions" style="padding: 6px 0;">
64fba1a2   Alexandre   Base du projet : ...
37
                    <?php 
a97b5772   Alexandre   Migration fonctio...
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
                    if(h($materiel->status) == 'CREATED') {
                    	echo $this->Form->postLink('<i class="icon-ok-sign"></i>',
                    			['action' => 'statusValidated', $materiel->id],
                    			['title' => 'Valider', 'style' => 'margin: 0 2px', 'escape' => false,
                    			'confirm' => __('Êtes-vous sur de vouloir validé # {0}?', $materiel->designation)]);
                    } 
                    else if (h($materiel->status) == 'VALIDATED' && h($materiel->nom_responsable) == $username) {
                    	echo $this->Form->postLink('<i class="icon-inbox"></i>',
                    			['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 # {0}?', $materiel->designation)]);
                    	
                    }
                    else if (h($materiel->status) == 'VALIDATED'){
                    	echo $this->Form->postLink('<i class="icon-inbox"></i>',
                    			['action' => 'statusArchived', $materiel->id],
                    			['title' => 'Sortir de l\'inventaire', 'style' => 'margin: 0 2px', 'escape' => false,
                    			'confirm' => __('Êtes-vous sur de vouloir archivé # {0}?', $materiel->designation)]);
                    }
                   
64fba1a2   Alexandre   Base du projet : ...
58
                    ?>
a97b5772   Alexandre   Migration fonctio...
59
60
61
62
63
64
65
                </td>
                <td class="actions" style="padding: 6px 0;">
                   <?php 
                   if (h($materiel->status) == 'CREATED') {
                   		echo $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $materiel->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $materiel->designation)]);
                   }
                   ?>
6c4edfa3   Alexandre   First Commit LabI...
66
67
68
69
70
                </td>
            </tr>
            <?php endforeach; ?>
        </tbody>
    </table>
64fba1a2   Alexandre   Base du projet : ...
71
    
4260780b   Alexandre   Migration vue, co...
72

64fba1a2   Alexandre   Base du projet : ...
73
74
    
    <div class="paging" style="color: black;">
4260780b   Alexandre   Migration vue, co...
75
      		<?= $this->Paginator->counter(['format' => 'Page {{page}} sur {{pages}}']) ?>
64fba1a2   Alexandre   Base du projet : ...
76
77
78
79
80
    		<?= $this->Paginator->first('<< ' . __(''), ['class' => 'prev']) ?>
            <?= $this->Paginator->prev('< ' . __(''), ['class' => 'prev disabled']) ?>
            <?= $this->Paginator->numbers(['separator' => '']) ?>
            <?= $this->Paginator->next(__('') . ' >', ['class' => 'next disabled']) ?>
            <?= $this->Paginator->last(__('') . ' >>', ['class' => 'next']) ?>
6c4edfa3   Alexandre   First Commit LabI...
81
82
    </div>
</div>
4260780b   Alexandre   Migration vue, co...
83
84
85
86
87
88
89
90


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