Blame view

src/Template/Fournisseurs/view.ctp 2.28 KB
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
1
2

<div class="fournisseurs view">
63c3cb16   epallier   Nombreux petits b...
3
4
5
6
7
8
9
	<h2>Détail Fournisseur</h2>
	<table style="margin-bottom: 30px;">

		<tr>
			<th style="width: 250px;"></th>
			<th></th>
		</tr>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
10
    	
63c3cb16   epallier   Nombreux petits b...
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
    	<?php
    if (in_array($role, [
        'Administration',
        'Administration Plus',
        'Super Administrateur'
    ])) {
        echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce fournisseur'), [
            'action' => 'edit',
            $fournisseur->id
        ], [
            'escape' => false,
            'onclick' => 'return true;'
        ]);
    }
    
    if (in_array($role, [
        'Administration',
        'Super Administrateur'
    ])) {
        echo $this->Form->postLink(__('<i class="icon-trash"></i> Supprimer ce fournisseur'), [
            'action' => 'delete',
            $fournisseur->id
        ], [
            'style' => 'margin-left: 110px',
            'escape' => false,
            'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $fournisseur->id)
        ]);
    }
    
    $displayElement(__('Nom'), h($fournisseur->nom));
    ?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
42
43
44


    </table>
63c3cb16   epallier   Nombreux petits b...
45
46
47
48
49
50

	<h3 id="t_materiel" style="cursor: pointer;">
		<i class="icon-chevron-down" style="font-size: 14px;" id="i_materiel"></i>
		<span style="text-decoration: underline;">Materiels associées (<?= $materiels->count()?>)</span>
	</h3>
	<div id="materiel" style="margin-bottom: 20px;">
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
51
52

        <?php if (!empty($materiels)) { ?>
63c3cb16   epallier   Nombreux petits b...
53
54
55
56
57
        <table>
			<tr>
				<th><?= __('Désignation') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
58
59
		<?php foreach ($materiels as $materiel): ?>
		<tr>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
60

63c3cb16   epallier   Nombreux petits b...
61
62
63
				<td><?= $this->Html->link(h($materiel->designation), ['controller' => 'Materiels', 'action' => 'view', h($materiel->id)]); ?></td>

				<td class="actions">
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
64
65
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Materiels', 'action' => 'view', $materiel->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
63c3cb16   epallier   Nombreux petits b...
66
			</tr>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
67
68
69
70
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun matériel lié à ce fournisseur.'; } ?>
    </div>
63c3cb16   epallier   Nombreux petits b...
71
72


b3dceb2a   Alexis Proust   Ajout nouveaux fi...
73
74
75
</div>


63c3cb16   epallier   Nombreux petits b...
76
<div class="actions">
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
77
			<?php echo $this->element('menu') ?>
63c3cb16   epallier   Nombreux petits b...
78
79
80
81
82
83
84
			<?php

echo $this->element('menu_view', [
    'pluralHumanName' => 'Fournisseurs',
    'singularHumanName' => 'Fournisseur',
    'lien' => $fournisseur->id
])?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
85
		</div>