diff --git a/htdocs/fourn/facture/contact.php b/htdocs/fourn/facture/contact.php
index c5205c47815..9010abbb50f 100644
--- a/htdocs/fourn/facture/contact.php
+++ b/htdocs/fourn/facture/contact.php
@@ -155,7 +155,7 @@ if ($id > 0 || ! empty($ref))
// Third party
print "
| ".$langs->trans("Supplier")." | ";
- print ''.$object->client->getNomUrl(1,'compta').' |
';
+ print ''.$object->thirdparty->getNomUrl(1,'supplier').' | ';
print "";
print '';
diff --git a/htdocs/fourn/facture/fiche.php b/htdocs/fourn/facture/fiche.php
index 06c8d9d590d..cf47afcf10c 100644
--- a/htdocs/fourn/facture/fiche.php
+++ b/htdocs/fourn/facture/fiche.php
@@ -1520,7 +1520,7 @@ else
print '';
// Third party
- print '| '.$langs->trans('Supplier').' | '.$societe->getNomUrl(1);
+ print ' |
| '.$langs->trans('Supplier').' | '.$societe->getNomUrl(1,'supplier');
print ' ('.$langs->trans('OtherBills').') | ';
print '
';
diff --git a/htdocs/fourn/facture/note.php b/htdocs/fourn/facture/note.php
index b4bb99dcefc..7947b9be020 100644
--- a/htdocs/fourn/facture/note.php
+++ b/htdocs/fourn/facture/note.php
@@ -101,7 +101,7 @@ if ($object->id > 0)
print "\n";
// Company
- print '| '.$langs->trans('Supplier').' | '.$object->thirdparty->getNomUrl(1).' |
';
+ print '| '.$langs->trans('Supplier').' | '.$object->thirdparty->getNomUrl(1,'supplier').' |
';
// Type
print '| '.$langs->trans('Type').' | ';
|