Commit 51e24d7161915e204e467745f0e332393b1c8a42
1 parent
421bd379
Exists in
master
and in
3 other branches
Version: 2.4.6.1
Ajout "from_mail" --> db-update-2016-06-20.sh Version majeure en cours (2.4): https://projects.irap.omp.eu/versions/107 ROADMAP: https://projects.irap.omp.eu/projects/labinvent/roadmap
Showing
5 changed files
with
8 additions
and
10 deletions
Show diff stats
README-LABINVENT.md
... | ... | @@ -50,17 +50,11 @@ Logiciel testé et validé sur les configurations suivantes : |
50 | 50 | |
51 | 51 | VERSION ACTUELLE |
52 | 52 | |
53 | -Date: 20/06/2016 | |
54 | -Version: 2.4.6.0 | |
53 | +Date: 21/06/2016 | |
54 | +Version: 2.4.6.1 | |
55 | 55 | |
56 | -!!! Mise à jour : Exécuter le script db-update-2016-06-20.sh (en se plaçant dans le dossier ./database/update) !!! | |
56 | +Ajout "from_mail" --> db-update-2016-06-20.sh | |
57 | 57 | |
58 | -Suivis (ajout groupe thematique et metier) + bouton TBA pour responsable (materiels/index) + recherche de suivi + réglages attribut from mail + bugfixes (recherche date, probleme config mail 1-10, ...) | |
59 | - | |
60 | -Demande (terminé) : https://projects.irap.omp.eu/issues/3784 | |
61 | - https://projects.irap.omp.eu/issues/3782 | |
62 | - https://projects.irap.omp.eu/issues/3788 | |
63 | - | |
64 | 58 | Version majeure en cours (2.4): https://projects.irap.omp.eu/versions/107 |
65 | 59 | |
66 | 60 | ROADMAP: https://projects.irap.omp.eu/projects/labinvent/roadmap | ... | ... |
database/labinvent_2.1_12-05-16.sql
... | ... | @@ -335,6 +335,7 @@ CREATE TABLE IF NOT EXISTS `configurations` ( |
335 | 335 | `nom_groupe_thematique` varchar(50) DEFAULT 'Groupe thematique', |
336 | 336 | `nom_groupe_metier` varchar(50) DEFAULT 'Groupe metier', |
337 | 337 | `envoi_mail_management_dev` tinyint(1) DEFAULT NULL, |
338 | + `from_mail` varchar(200) DEFAULT '@localhost.com', | |
338 | 339 | `emailGuest1` varchar(45) DEFAULT NULL, |
339 | 340 | `emailGuest2` varchar(45) DEFAULT NULL, |
340 | 341 | `emailGuest3` varchar(45) DEFAULT NULL, | ... | ... |
database/update/script_sql/db-update-2016-06-20.sql
... | ... | @@ -7,3 +7,5 @@ ALTER TABLE `suivis` ADD `groupes_thematique_id` int(11) DEFAULT NULL; |
7 | 7 | |
8 | 8 | ALTER TABLE `suivis` ADD CONSTRAINT `fk_suivis_groupe_thematique` FOREIGN KEY (`groupes_thematique_id`) REFERENCES `groupes_thematiques` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
9 | 9 | ALTER TABLE `suivis` ADD CONSTRAINT `fk_suivis_groupe_metier` FOREIGN KEY (`groupes_metier_id`) REFERENCES `groupes_metiers` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; |
10 | + | |
11 | +ALTER TABLE `configurations` ADD `from_mail` varchar(200) DEFAULT '@localhost.com'; | ... | ... |
database/update/update_Donnees_IAS_Labinvent2.sql
... | ... | @@ -183,6 +183,7 @@ CREATE TABLE IF NOT EXISTS `configurations` ( |
183 | 183 | `nom_groupe_thematique` varchar(50) DEFAULT 'Groupe thematique', |
184 | 184 | `nom_groupe_metier` varchar(50) DEFAULT 'Groupe metier', |
185 | 185 | `envoi_mail_management_dev` tinyint(1) DEFAULT NULL, |
186 | + `from_mail` varchar(200) DEFAULT '@localhost.com', | |
186 | 187 | `emailGuest1` varchar(45) DEFAULT NULL, |
187 | 188 | `emailGuest2` varchar(45) DEFAULT NULL, |
188 | 189 | `emailGuest3` varchar(45) DEFAULT NULL, | ... | ... |
src/Template/Layout/default.ctp
... | ... | @@ -94,7 +94,7 @@ $cakeDescription = 'Labinvent 2.0'; |
94 | 94 | </i></td> |
95 | 95 | <td id="version"> |
96 | 96 | <!-- VERSION M.m.f.b (version (M)ajeure, version (m)ineure, numero de nouvelle (f)onctionnalite, numero de (b)ugfix) --> |
97 | - <font color="black">VERSION 2.4.6.0 (20/06/2016)</font> | |
97 | + <font color="black">VERSION 2.4.6.1 (21/06/2016)</font> | |
98 | 98 | </td> |
99 | 99 | </tr> |
100 | 100 | </table> | ... | ... |