diff --git a/README-LABINVENT.md b/README-LABINVENT.md
index 3c8ebaf..00ba2c9 100755
--- a/README-LABINVENT.md
+++ b/README-LABINVENT.md
@@ -47,9 +47,9 @@ Logiciel testé et validé sur les configurations suivantes :
VERSION ACTUELLE
-Date: 01/02/2018
-Version: 2.8.0.11
- Bugfix saisie dates (en général, amelioration javascript)
+Date: 02/02/2018
+Version: 2.8.1.0
+ Modif format étiquette
Version majeure en cours (2.8): https://projects.irap.omp.eu/versions/162
diff --git a/src/Controller/MaterielsController.php b/src/Controller/MaterielsController.php
index 2b91dca..a1d6ae7 100755
--- a/src/Controller/MaterielsController.php
+++ b/src/Controller/MaterielsController.php
@@ -2167,7 +2167,8 @@ class MaterielsController extends AppController
// does not work in all cases :
//$dateAcquisition = substr(str_replace('/','-',$materiel->date_acquisition), 0,-4) . substr($materiel->date_acquisition,-2);
//$dateAcquisition = $materiel->date_acquisition->__toString(); // '20/10/2017'
- $dateAcquisition = $materiel->date_acquisition->i18nFormat('dd-MM-yy'); // // '20-10-17'
+ //$dateAcquisition = $materiel->date_acquisition->i18nFormat('dd-MM-yy'); // // '20-10-17'
+ $dateAcquisition = $materiel->date_acquisition->i18nFormat('dd-MM-yyyy'); // // '20-10-2017'
$filename = 'inventirap_label.label';
$file = fopen('php://output', 'w');
@@ -2268,15 +2269,22 @@ class MaterielsController extends AppController