Commit 7bcf546d8569c3192c4ae94d1d17c6f3f2b879c7
1 parent
dec9b0b1
Exists in
master
and in
3 other branches
mise a jour fichier
Showing
7 changed files
with
42 additions
and
9 deletions
Show diff stats
src/Template/Element/menu.ctp
... | ... | @@ -15,10 +15,14 @@ |
15 | 15 | ['controller' => 'materiels', 'action' => 'find'], |
16 | 16 | ['escape' => false]); ?></li> |
17 | 17 | |
18 | - <li><?= $this->Html->link(__('<i class="icon-search"></i> Rechercher un suivi'), | |
18 | + <li><?= $this->Html->link(__('<i class="icon-search"></i> Rechercher un suivi'), | |
19 | 19 | ['controller' => 'suivis', 'action' => 'find'], |
20 | 20 | ['escape' => false]); ?></li> |
21 | - | |
21 | + | |
22 | + <li><?= $this->Html->link(__('<i class="icon-search"></i> Rechercher un emprunt'), | |
23 | + ['controller' => 'emprunts', 'action' => 'find'], | |
24 | + ['escape' => false]); ?></li> | |
25 | + | |
22 | 26 | <li><?= $this->Html->link(__('<i class="icon-list"></i> Liste des matériels'), |
23 | 27 | ['controller' => 'Materiels', 'action' => 'index'], |
24 | 28 | ['escape' => false]) ?></li> |
... | ... | @@ -47,7 +51,7 @@ |
47 | 51 | |
48 | 52 | <?php endif; ?> |
49 | 53 | |
50 | - <li><?= $this->Html->link(__('<i class="icon-list"></i> A PROPOS'), | |
54 | + <li><?= $this->Html->link(__('<i class="icon-list"></i> A propos'), | |
51 | 55 | ['controller' => 'pages', 'action' => 'about'], |
52 | 56 | ['escape' => false]) ?></li> |
53 | 57 | ... | ... |
src/Template/Element/menu_index.ctp
... | ... | @@ -8,6 +8,8 @@ |
8 | 8 | if (strtolower($pluralHumanName) == "sur categorie") $pluralHumanName="Domaines"; |
9 | 9 | if (strtolower($pluralHumanName) == "sous categorie") $pluralHumanName="Sous-Catégories"; |
10 | 10 | if (strtolower($pluralHumanName) == "categories") $pluralHumanName="Catégories"; |
11 | +if (strtolower($pluralHumanName) == "unités") $pluralHumanName="Unités"; | |
12 | +if (strtolower($pluralHumanName) == "formules") $pluralHumanName="Formules"; | |
11 | 13 | echo $pluralHumanName; |
12 | 14 | ?></h3> |
13 | 15 | <ul> |
... | ... | @@ -39,12 +41,13 @@ echo $pluralHumanName; |
39 | 41 | $t = str_replace('sur categorie', 'domaine', $t); |
40 | 42 | $t = str_replace('sous categorie', 'sous-catégorie', $t); |
41 | 43 | $t = str_replace('categorie', 'catégorie', $t); |
42 | - | |
44 | + $t = str_replace('unite', 'unité', $t); | |
45 | + $t = str_replace('formule', 'formule', $t); | |
43 | 46 | if(strlen($t) > 12) { |
44 | 47 | $t = 'Nouv. '.$t; |
45 | 48 | } |
46 | 49 | else { |
47 | - if(strstr($t, 'catégorie')) { | |
50 | + if(strstr($t, 'catégorie') || strstr($t,'unité') || strstr($t,'formule')) { | |
48 | 51 | $t = ' Nouvelle ' . $t; |
49 | 52 | } elseif(strstr($t, 'utilisateur') || strstr($t, 'emprunt')) { |
50 | 53 | $t = ' Nouvel ' . $t; | ... | ... |
src/Template/Pages/tools.ctp
... | ... | @@ -10,7 +10,7 @@ |
10 | 10 | echo '</td></tr>'; |
11 | 11 | endif; |
12 | 12 | |
13 | - if(in_array($role, ['Administration Plus', 'Super Administrateur'])) { | |
13 | + if(in_array($role, ['Administration','Administration Plus', 'Super Administrateur'])) { | |
14 | 14 | echo '<tr><td>'; |
15 | 15 | echo $this->Html->link('Gérer le contenu variable de l\'application', ['controller' => 'pages', 'action' => 'tools_sm']); |
16 | 16 | echo '</td></tr>'; | ... | ... |
src/Template/Pages/tools_menu_sm.ctp
... | ... | @@ -48,7 +48,17 @@ echo '<tr><td>'; |
48 | 48 | echo $this->Html->link('Liste des types de documents', ['controller' => 'type_documents', 'sort' => 'nom']); |
49 | 49 | echo '</td></tr>'; |
50 | 50 | |
51 | +echo '<tr><td>'; | |
52 | +echo $this->Html->link('Liste des unités', ['controller' => 'unites', 'sort' => 'nom']); | |
53 | +echo '</td></tr>'; | |
51 | 54 | |
55 | +echo '<tr><td>'; | |
56 | +echo $this->Html->link('Liste des fournisseurs', ['controller' => 'fournisseurs', 'sort' => 'nom']); | |
57 | +echo '</td></tr>'; | |
58 | + | |
59 | +echo '<tr><td>'; | |
60 | +echo $this->Html->link('Liste des formules', ['controller' => 'formules', 'sort' => 'nom']); | |
61 | +echo '</td></tr>'; | |
52 | 62 | |
53 | 63 | ?> |
54 | 64 | </table> | ... | ... |
src/Template/Pages/tools_sm.ctp
... | ... | @@ -48,7 +48,17 @@ echo '<tr><td>'; |
48 | 48 | echo $this->Html->link('Gérer les types de documents', ['controller' => 'type_documents', 'sort' => 'nom']); |
49 | 49 | echo '</td></tr>'; |
50 | 50 | |
51 | +echo '<tr><td>'; | |
52 | +echo $this->Html->link('Gérer les unités', ['controller' => 'unite', 'sort' => 'nom']); | |
53 | +echo '</td></tr>'; | |
51 | 54 | |
55 | +echo '<tr><td>'; | |
56 | +echo $this->Html->link('Gérer les fournisseurs', ['controller' => 'fournisseurs', 'sort' => 'nom']); | |
57 | +echo '</td></tr>'; | |
58 | + | |
59 | +echo '<tr><td>'; | |
60 | +echo $this->Html->link('Gérer les formules', ['controller' => 'formules', 'sort' => 'nom']); | |
61 | +echo '</td></tr>'; | |
52 | 62 | ?> |
53 | 63 | </table> |
54 | 64 | </div> | ... | ... |
src/Template/Suivis/index.ctp
... | ... | @@ -8,10 +8,11 @@ |
8 | 8 | <th><?= $this->Paginator->sort('id', 'N°') ?></th> |
9 | 9 | <th><?= $this->Paginator->sort('materiel_id', 'Matériel') ?></th> |
10 | 10 | <th><?= $this->Paginator->sort('numero_laboratoire', 'N° interne (labo)') ?></th> |
11 | + <th><?= $this->Paginator->sort('intitule', "Intitulé") ?></th> | |
11 | 12 | <th><?= $this->Paginator->sort('date_controle', 'Date intervention') ?></th> |
12 | 13 | <th><?= $this->Paginator->sort('date_prochain_controle', 'Date prochaine intervention') ?></th> |
13 | 14 | <th><?= $this->Paginator->sort('type_suivi_id', "Type d'intervention") ?></th> |
14 | - <th><?= $this->Paginator->sort('statut', "Statut") ?></th> | |
15 | + <th><?= $this->Paginator->sort('statut', "Statut") ?></th> | |
15 | 16 | |
16 | 17 | </tr> |
17 | 18 | </thead> |
... | ... | @@ -30,6 +31,7 @@ |
30 | 31 | <td class="smallText"><?php echo $this->Html->link('Suivi '.$this->Number->format($suivi->id), ['action' => 'view', $suivi->id])?></td> |
31 | 32 | <td class="smallText"><?= $suivi->has('materiel') ? $this->Html->link($suivi->materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $suivi->materiel->id]) : '' ?></td> |
32 | 33 | <td class="smallText"><?= $suivi->has('materiel') ? h($suivi->materiel->numero_laboratoire) : '' ?></td> |
34 | + <td class="smallText"><?= h($suivi->intitule) ?></td> | |
33 | 35 | <td class="smallText"><?= h($suivi->date_controle) ?></td> |
34 | 36 | <td class="smallText"><?= h($suivi->date_prochain_controle) ?></td> |
35 | 37 | <td class="smallText"><?= $suivi->has('type_suivi') ? h($suivi->type_suivi->nom) : '' ?></td> | ... | ... |
src/Template/Users/edit.ctp
... | ... | @@ -32,8 +32,12 @@ |
32 | 32 | 'options' => ['Super Administrateur' => 'Super Administrateur', 'Administration Plus' => 'Administration Plus', 'Administration' => 'Administration', 'Responsable' => 'Responsable', 'Utilisateur' => 'Utilisateur'] |
33 | 33 | ]); |
34 | 34 | echo $this->Form->input('groupes_metier_id', ['label' => $configuration->nom_groupe_metier, 'options' => $groupesMetiers, 'default' => 1]); |
35 | - echo $this->Form->input('groupe_thematique_id', ['label' => $configuration->nom_groupe_thematique, 'options' => $groupesThematiques, 'default' => 1]); | |
36 | - ?> | |
35 | + | |
36 | + echo $this->Form->input('groupe_thematique_id', ['label' => $configuration->nom_groupe_thematique, 'options' => $groupesThematiques, 'default' => 1]); | |
37 | + | |
38 | + echo $this->Form->input('sur_categorie_id', ['label' => 'Domaine', 'options' => $sur_categorie, 'default' => 0]); | |
39 | + | |
40 | + ?> | |
37 | 41 | </fieldset> |
38 | 42 | <?= $this->Form->submit(__('Valider')) ?> |
39 | 43 | <?= $this->Form->end() ?> | ... | ... |