diff --git a/ChangeLog b/ChangeLog
index 101e70ca8b5..9c9983ba6f8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,9 @@
English Dolibarr ChangeLog
--------------------------------------------------------------
+***** ChangeLog for 3.5.4 compared to 3.5.3 *****
+Fix: [ bug #1415 ] Intervention document model name and suppliers model names is not shown properly in module configuration
+
***** ChangeLog for 3.5.3 compared to 3.5.2 *****
Fix: Error on field accountancy code for export profile of invoices.
Fix: [ bug #1351 ] VIES verification link broken.
diff --git a/htdocs/admin/fichinter.php b/htdocs/admin/fichinter.php
index fd2ea1dc966..da00762040a 100644
--- a/htdocs/admin/fichinter.php
+++ b/htdocs/admin/fichinter.php
@@ -376,13 +376,16 @@ foreach ($dirmodels as $reldir)
{
if (substr($file, dol_strlen($file) -12) == '.modules.php' && substr($file,0,4) == 'pdf_')
{
+ $var=!$var;
+
$name = substr($file, 4, dol_strlen($file) -16);
$classname = substr($file, 0, dol_strlen($file) -12);
- $var=!$var;
+ require_once $dir.'/'.$file;
+ $module = new $classname($db);
print '
| ';
- echo "$name";
+ print (empty($module->name)?$name:$module->name);
print " | \n";
require_once $dir.$file;
$module = new $classname($db);
diff --git a/htdocs/admin/supplier_invoice.php b/htdocs/admin/supplier_invoice.php
index 5800ccc3a9b..6ee60ddfb33 100644
--- a/htdocs/admin/supplier_invoice.php
+++ b/htdocs/admin/supplier_invoice.php
@@ -372,9 +372,14 @@ foreach ($dirmodels as $reldir)
$name = substr($file, 4, dol_strlen($file) -16);
$classname = substr($file, 0, dol_strlen($file) -12);
+ require_once $dir.'/'.$file;
+ $module = new $classname($db, new FactureFournisseur($db));
+
$var=!$var;
print " |
\n";
- print "| ".$name." | \n";
+ print "";
+ print (empty($module->name)?$name:$module->name);
+ print " | \n";
print "\n";
require_once $dir.$file;
$module = new $classname($db,$specimenthirdparty);
diff --git a/htdocs/admin/supplier_order.php b/htdocs/admin/supplier_order.php
index 07d7d731652..f5ef9f4331f 100644
--- a/htdocs/admin/supplier_order.php
+++ b/htdocs/admin/supplier_order.php
@@ -367,9 +367,14 @@ foreach ($dirmodels as $reldir)
$name = substr($file, 4, dol_strlen($file) -16);
$classname = substr($file, 0, dol_strlen($file) -12);
+ require_once $dir.'/'.$file;
+ $module = new $classname($db, new CommandeFournisseur($db));
+
$var=!$var;
print " |
\n";
- print "| ".$name." | \n";
+ print "";
+ print (empty($module->name)?$name:$module->name);
+ print " | \n";
print "\n";
require_once $dir.$file;
$module = new $classname($db,$specimenthirdparty);
|