diff --git a/htdocs/compta/fiche.php b/htdocs/compta/fiche.php
index 51ddad86850..e06a6807e10 100644
--- a/htdocs/compta/fiche.php
+++ b/htdocs/compta/fiche.php
@@ -234,10 +234,12 @@ if ($socid > 0)
print '
| '.$langs->trans("Phone").' | '.dolibarr_print_phone($societe->tel,$societe->pays_code).' | '.$langs->trans("Fax").' | '.dolibarr_print_phone($societe->fax,$societe->pays_code).' |
';
print '| '.$langs->trans("Web")." | url\">$societe->url |
";
- print "| ".$langs->transcountry("ProfId1",$societe->pays_code)." | siren."\">".$societe->siren." | ";
- print ''.$langs->transcountry('ProfId2',$societe->pays_code).' | '.$societe->siret.' |
';
+ // TVA
+ print '| '.$langs->trans('VATIntraShort').' | ';
+ print $societe->tva_intra;
+ print ' |
';
- print '| '.$langs->transcountry('ProfId3',$societe->pays_code).' | '.$societe->ape.' | |
';
+ print '| '.$langs->trans('Capital').' | '.$societe->capital.' '.$langs->trans("Currency".$conf->monnaie).' |
';
// Statut juridique
print '| '.$langs->trans('JuridicalStatus').' | '.$societe->forme_juridique.' |
';
@@ -559,15 +561,6 @@ if ($socid > 0)
}
print "";
- // Notes sur la societe
- /*
- if ($societe->note) {
- print '';
- print "| ".nl2br($societe->note)." |
";
- print "
";
- }
- */
-
}
} else {