diff --git a/htdocs/societe/class/societe.class.php b/htdocs/societe/class/societe.class.php
index 91059c7ecc1..66974c7e5e9 100644
--- a/htdocs/societe/class/societe.class.php
+++ b/htdocs/societe/class/societe.class.php
@@ -2571,7 +2571,9 @@ class Societe extends CommonObject
$label .= '
'.$langs->trans('Phone').': '.implode(' ', $phonelist);
}
if (!empty($this->address)) {
- $label .= '
'.$langs->trans("Address").': '.dol_format_address($this, 1, ' ', $langs);
+ $label .= '
'.$langs->trans("Address").': '.dol_format_address($this, 1, ' ', $langs); // Address + country
+ } elseif (!empty($this->country_code)) {
+ $label .= '
'.$langs->trans('Country').': '.$this->country_code;
}
if (!empty($this->tva_intra) || (!empty($conf->global->SOCIETE_SHOW_FIELD_IN_TOOLTIP) && strpos($conf->global->SOCIETE_SHOW_FIELD_IN_TOOLTIP, 'vatnumber') !== false)) {
$label .= '
'.$langs->trans('VATIntra').': '.dol_escape_htmltag($this->tva_intra);