diff --git a/htdocs/contact/document.php b/htdocs/contact/document.php
index 239b1d9a6fd..81f9b2a29be 100644
--- a/htdocs/contact/document.php
+++ b/htdocs/contact/document.php
@@ -104,6 +104,25 @@ if ($object->id)
print '
| '.$langs->trans("Lastname").' / '.$langs->trans("Label").' | '.$object->lastname.' | ';
print ''.$langs->trans("Firstname").' | '.$object->firstname.' |
';
+ // Company
+ if (empty($conf->global->SOCIETE_DISABLE_CONTACTS))
+ {
+ if ($object->socid > 0)
+ {
+ $objsoc = new Societe($db);
+ $objsoc->fetch($object->socid);
+
+ print '| '.$langs->trans("ThirdParty").' | '.$objsoc->getNomUrl(1).' |
';
+ }
+
+ else
+ {
+ print '| '.$langs->trans("ThirdParty").' | ';
+ print $langs->trans("ContactNotLinkedToCompany");
+ print ' |
';
+ }
+ }
+
print '| '.$langs->trans("NbOfAttachedFiles").' | '.count($filearray).' |
';
print '| '.$langs->trans("TotalSizeOfAttachedFiles").' | '.$totalsize.' '.$langs->trans("bytes").' |
';
print '';