Commit 440caf8f86d0c26c47b117547a417c208ed1a32e

Authored by Alexandre
1 parent 4fd23929

Version: 2.4.3.0

Reversionnage 2.5 -> 2.4
									
Version majeure en cours (2.5): https://projects.irap.omp.eu/versions/99

ROADMAP: https://projects.irap.omp.eu/projects/labinvent/roadmap
README-LABINVENT.md
... ... @@ -51,13 +51,9 @@ Logiciel testé et validé sur les configurations suivantes :
51 51 VERSION ACTUELLE
52 52  
53 53 Date: 07/06/2016
54   -Version: 2.5.0
  54 +Version: 2.4.3.0
55 55  
56   -!!! MAJ BD !!!
57   -Modification table documents (mise en place vue)
58   -
59   -Demande (en cours): https://projects.irap.omp.eu/issues/3716
60   - https://projects.irap.omp.eu/issues/3762
  56 +Reversionnage 2.5 -> 2.4
61 57  
62 58 Version majeure en cours (2.5): https://projects.irap.omp.eu/versions/99
63 59  
... ... @@ -69,10 +65,6 @@ CHANGEMENTS IMPORTANTS (MILESTONES)
69 65  
70 66 Liste complète des évolutions: https://gitlab.irap.omp.eu/epallier/labinvent/commits/master
71 67  
72   -07/06/2016 Version: 2.4.2.25 (Version 2.4 finale)
73   - Implémentation des ACL (droits) - Version Final
74   - https://projects.irap.omp.eu/versions/107
75   -
76 68 30/05/2016 Version: 2.3.2.1 (Version 2.3 finale)
77 69 Implémentation du LDAP (vrai et fake)
78 70 https://projects.irap.omp.eu/versions/108
... ...
src/Template/Documents/add.ctp
... ... @@ -5,10 +5,10 @@
5 5 <h2><i class="icon-plus"></i> Lier un document</h2>
6 6 <?php
7 7 if(isset($materiel)) {
8   - echo $this->Form->input('materiel_id', ['label' => 'N° materiel labo', 'options' => $materiel, 'default' => $this->passedArgs[0], 'readonly' => TRUE]);
  8 + echo $this->Form->input('materiel_id', ['label' => 'N° materiel labo', 'options' => $materiel, 'default' => $this->passedArgs[0], 'readonly' => true]);
9 9 }
10 10 else if(isset($suivi)) {
11   - echo $this->Form->input('suivi_id', ['label' => 'N° suivi', 'options' => $suivi, 'default' => $this->passedArgs[0], 'readonly' => TRUE]);
  11 + echo $this->Form->input('suivi_id', ['label' => 'N° suivi', 'options' => $suivi, 'default' => $this->passedArgs[0], 'readonly' => true]);
12 12 }
13 13  
14 14 echo $this->Form->input('type_doc');
... ...
src/Template/Documents/edit.ctp
... ... @@ -5,10 +5,10 @@
5 5 <h2><i class="icon-edit"></i> Editer document</h2>
6 6 <?php
7 7 if(isset($materiel)) {
8   - echo $this->Form->input('materiel_id', ['label' => 'N° materiel labo', 'options' => $materiel, 'readonly' => TRUE]);
  8 + echo $this->Form->input('materiel_id', ['label' => 'N° materiel labo', 'options' => $materiel, 'readonly' => true]);
9 9 }
10 10 else if(isset($suivi)) {
11   - echo $this->Form->input('suivi_id', ['label' => 'N° suivi', 'options' => $suivi, 'readonly' => TRUE]);
  11 + echo $this->Form->input('suivi_id', ['label' => 'N° suivi', 'options' => $suivi, 'readonly' => true]);
12 12 }
13 13  
14 14 echo $this->Form->input('type_doc');
... ...
src/Template/Layout/default.ctp
... ... @@ -93,7 +93,7 @@ $cakeDescription = &#39;Labinvent 2.0&#39;;
93 93 </i></td>
94 94 <td id="version">
95 95 <!-- VERSION M.m.f.b (version (M)ajeure, version (m)ineure, numero de nouvelle (f)onctionnalite, numero de (b)ugfix) -->
96   - <font color="black">VERSION 2.4.2.25 (07/06/2016)</font>
  96 + <font color="black">VERSION 2.4.3.0 (07/06/2016)</font>
97 97 </td>
98 98 </tr>
99 99 </table>
... ...