Commit 297aab53ad1c0ea8aea30b5323b3bddcb053e8e0

Authored by Etienne Pallier
2 parents 7b060e8e 1c4b672f
Exists in master and in 1 other branch dev

Merge dev-IRAP branch into master branch

Showing 2 changed files with 14 additions and 4 deletions   Show diff stats
@@ -54,11 +54,10 @@ Logiciel testé et validé sur les configurations suivantes : @@ -54,11 +54,10 @@ Logiciel testé et validé sur les configurations suivantes :
54 VERSION ACTUELLE 54 VERSION ACTUELLE
55 55
56 Date: 17/07/2019 56 Date: 17/07/2019
57 -Version: 2.13.10 57 +Version: 2.13.11
58 Author: EP 58 Author: EP
59 Commentaire: 59 Commentaire:
60 - Bugfix et grosse amelioration de la validation d'un materiel TECHNIQUE => desormais possible pour un Responsable de groupe (metier ou thematique)  
61 - Refactorisation des ACL => toujours plus simple 60 + Bugfix format date sur etiquette
62 61
63 62
64 IMPORTANT : 63 IMPORTANT :
@@ -95,6 +94,13 @@ La liste ci-dessous n'est plus à jour, elle est désormais en ligne ici : https @@ -95,6 +94,13 @@ La liste ci-dessous n'est plus à jour, elle est désormais en ligne ici : https
95 94
96 ----------------------------------------------------------------------------------------------------------- 95 -----------------------------------------------------------------------------------------------------------
97 96
  97 +17/07/2019 Version: 2.13.10 (EP)
  98 + Bugfix et grosse amelioration :
  99 + validation d'un materiel TECHNIQUE => desormais possible pour un Responsable de groupe (metier ou thematique)
  100 + Bugfix : depuis la vue d'un matériel, actions faites sur matériel (valider, invalider, tba, archiver) ramènent à cette fiche
  101 + Bugfix : emails envoyés aux responsables sur action sur un matos (valider, invalider, tba, archive) ne plantent plus !!!
  102 + Refactorisation des ACL => toujours plus simple
  103 +
98 13/06/2019 Version: 2.13.9 (EP) 104 13/06/2019 Version: 2.13.9 (EP)
99 Refonte des fichiers d'installation (installation.sh et fichiers BD) 105 Refonte des fichiers d'installation (installation.sh et fichiers BD)
100 106
src/Controller/MaterielsController.php
@@ -2778,7 +2778,11 @@ class MaterielsController extends AppController @@ -2778,7 +2778,11 @@ class MaterielsController extends AppController
2778 $organisme = $materiel->organisme ? $materiel->organisme->nom : ''; 2778 $organisme = $materiel->organisme ? $materiel->organisme->nom : '';
2779 2779
2780 $numeroInventaireOrganisme = $materiel->numero_inventaire_organisme; 2780 $numeroInventaireOrganisme = $materiel->numero_inventaire_organisme;
2781 - $dateAcquisition = substr(str_replace('/','-',$materiel->date_acquisition), 0,-4) . substr($materiel->date_acquisition,-2); 2781 + /*
  2782 + $dateAcquisition = substr(str_replace('/','-',$materiel->date_acquisition), 0,-4); // '06-12-'
  2783 + $dateAcquisition .= substr($materiel->date_acquisition,-2); // '06-12-17'
  2784 + */
  2785 + $dateAcquisition = $materiel->date_acquisition->format('d-m-y'); // '06-12-17'
2782 2786
2783 $filename = 'inventirap_label.label'; 2787 $filename = 'inventirap_label.label';
2784 $file = fopen('php://output', 'w'); 2788 $file = fopen('php://output', 'w');