view.ctp 2.66 KB

<?php
// Variables passées à la vue par le controleur
$fournisseur = $fournisseur; 
?>

<div class="fournisseurs view">

	<h2>Détail Fournisseur</h2>
	
	<?=$this->element('buttons_edit_del', ['id' => $fournisseur->id]);?>
		
	<table style="margin-bottom: 30px;">

		<tr>
			<th style="width: 250px;"></th>
			<th></th>
		</tr>
    	
    	<?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
            ], [
                '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)
            ]);
        }
        */
    
        $displayElement(__('Nom'), h($fournisseur->nom));
        ?>


    </table>

	<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;">

        <?php if (!empty($materiels)) { ?>
        <table>
			<tr>
				<th><?= __('Désignation') ?></th>
				<th style="width: 50px;"><?= __('Détail') ?></th>
			</tr> 	
		<?php foreach ($materiels as $materiel): ?>
		<tr>

				<td><?= $this->Html->link(h($materiel->designation), ['controller' => 'Materiels', 'action' => 'view', h($materiel->id)]); ?></td>

				<td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Materiels', 'action' => 'view', $materiel->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
			</tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun matériel lié à ce fournisseur.'; } ?>
    </div>


</div>

<!--
<div class="actions">
			<php echo $this->element('menu') ?>
			<php

echo $this->element('menu_view', [
    'pluralHumanName' => 'Fournisseurs',
    'singularHumanName' => 'Fournisseur',
    'lien' => $fournisseur->id
])?>
		</div>
-->