Blame view

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

33b54375   Etienne Pallier   Premiers bugfixes...
2
3
4
5
6
<?php
// Variables passées à la vue par le controleur
$fournisseur = $fournisseur; 
?>

b3dceb2a   Alexis Proust   Ajout nouveaux fi...
7
<div class="fournisseurs view">
33b54375   Etienne Pallier   Premiers bugfixes...
8

63c3cb16   epallier   Nombreux petits b...
9
	<h2>Détail Fournisseur</h2>
33b54375   Etienne Pallier   Premiers bugfixes...
10
11
12
	
	<?=$this->element('buttons_edit_del', ['id' => $fournisseur->id]);?>
		
63c3cb16   epallier   Nombreux petits b...
13
14
15
16
17
18
	<table style="margin-bottom: 30px;">

		<tr>
			<th style="width: 250px;"></th>
			<th></th>
		</tr>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
19
    	
63c3cb16   epallier   Nombreux petits b...
20
    	<?php
33b54375   Etienne Pallier   Premiers bugfixes...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
    	/*
        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
            ], [
                'style' => 'margin-right: 40px; display: inline-block',
                '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' => 'display: inline-block',
                'escape' => false,
                'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $fournisseur->id)
            ]);
        }
        */
63c3cb16   epallier   Nombreux petits b...
51
    
33b54375   Etienne Pallier   Premiers bugfixes...
52
53
        $displayElement(__('Nom'), h($fournisseur->nom));
        ?>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
54
55
56


    </table>
63c3cb16   epallier   Nombreux petits b...
57
58
59
60
61
62

	<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...
63
64

        <?php if (!empty($materiels)) { ?>
63c3cb16   epallier   Nombreux petits b...
65
66
67
68
69
        <table>
			<tr>
				<th><?= __('Désignation') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
70
71
		<?php foreach ($materiels as $materiel): ?>
		<tr>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
72

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

				<td class="actions">
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
76
77
                <?= $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...
78
			</tr>
b3dceb2a   Alexis Proust   Ajout nouveaux fi...
79
80
81
82
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun matériel lié à ce fournisseur.'; } ?>
    </div>
63c3cb16   epallier   Nombreux petits b...
83
84


b3dceb2a   Alexis Proust   Ajout nouveaux fi...
85
86
</div>

b2dade50   Prugniel   modifs Jeanne boo...
87
<!--
63c3cb16   epallier   Nombreux petits b...
88
<div class="actions">
b2dade50   Prugniel   modifs Jeanne boo...
89
90
			<php echo $this->element('menu') ?>
			<php
63c3cb16   epallier   Nombreux petits b...
91
92
93
94
95
96

echo $this->element('menu_view', [
    'pluralHumanName' => 'Fournisseurs',
    'singularHumanName' => 'Fournisseur',
    'lien' => $fournisseur->id
])?>
b2dade50   Prugniel   modifs Jeanne boo...
97
98
		</div>
-->