diff --git a/htdocs/compta/fiche.php b/htdocs/compta/fiche.php
index d05f90bd8aa..f248e9e80de 100644
--- a/htdocs/compta/fiche.php
+++ b/htdocs/compta/fiche.php
@@ -268,18 +268,18 @@ if ($socid > 0)
// Remise permanente
print '
| ';
print '';
- print ' | '.$societe->remise_client." % | ";
+ print ''.($societe->remise_client?$societe->remise_client.'%':$langs->trans("DiscountNone")).' | ';
print '
';
// Remise avoirs
print '| ';
print '';
@@ -288,7 +288,7 @@ if ($socid > 0)
$amount_discount=$societe->getCurrentDiscount();
if ($amount_discount < 0) dolibarr_print_error($db,$societe->error);
if ($amount_discount > 0) print $amount_discount.' '.$langs->trans("Currency".$conf->monnaie);
- else print $langs->trans("None");
+ else print $langs->trans("DiscountNone");
print ' | ';
print '
';
}