diff --git a/src/Template/Suivis/view.ctp b/src/Template/Suivis/view.ctp
index a782a81..d1defdb 100755
--- a/src/Template/Suivis/view.ctp
+++ b/src/Template/Suivis/view.ctp
@@ -10,7 +10,8 @@
nom_createur
- ])) || (in_array($role, [
+ ])) || ($role == 'Responsable' && in_array($username, [$suivi->nom_createur]))
+ || (in_array($role, [
'Administration',
'Administration Plus',
'Super Administrateur'
@@ -151,18 +152,20 @@ if ($suivi->type_suivi->nom == "Vérification métrologique") {
documents as $documents): ?>
- = $this->Html->link(__(''), '/webroot/files/'.$documents->id.'.'.$documents->type_doc, ['title' => 'Télécharger', 'style' => 'margin:0', 'escape' => false ]) ?>
+ = $this->Html->link(__(''),'/webroot/files/'.$documents->suivi_id.'_'.$documents->nom.'_'.$documents->id.'.'.$documents->type_doc, ['title' => 'Télécharger', 'style' => 'margin:0', 'escape' => false ]) ?>
nom_createur
- ])) || (in_array($role, [
+ ])) || ($role == 'Responsable' && in_array($username, [$suivi->nom_createur]))
+ || (in_array($role, [
'Administration',
'Administration Plus',
'Super Administrateur'
])) || ($role == 'Responsable' && ((isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id != $idGmNa && $suivi->groupes_metier_id == $priviledgedUser->groupes_metier_id) || (isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id != $idGtNa && $suivi->groupes_thematique_id == $priviledgedUser->groupe_thematique_id)))) {
?>
= $this->Html->link(__(''), ['controller' => 'Documents', 'action' => 'edit', $documents->id], ['escape' => false, 'style' => 'margin:0'])?>
- = $this->Form->postLink(__(''), ['controller' => 'Documents', 'action' => 'delete', $documents->id], ['escape' => false, 'style' => 'margin:0', 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $documents->id)]) ?>
+ = $this->Form->postLink(__(''), ['controller' => 'Documents', 'action' => 'delete', $documents->id], ['escape' => false, 'style' => 'margin:0', 'confirm' => __('Êtes-vous sur de vouloir supprimer le document nommé {0}?', $documents->nom)]) ?>
+ = $this->Form->postLink(__(''), ['controller' => 'Documents','action' => __('mailDevis' ,$documents->id),$documents->id], ['escape' => false,'style' => 'margin:0','confirm' => __(' Voulez vous envoyer le document par mail ? ')])?>
|
= $i ?> |
--
libgit2 0.21.2