diff --git a/htdocs/compta/facture.php b/htdocs/compta/facture.php
index 4d3843cc1f4..a905c3b215d 100644
--- a/htdocs/compta/facture.php
+++ b/htdocs/compta/facture.php
@@ -2033,7 +2033,9 @@ else
if (($fac->statut == 2 || $fac->statut == 3) && $fac->close_code == 'abandon')
{
print '
';
- print $html->textwithhelp($langs->trans("Abandoned").':',$langs->trans("HelpAbandonOther"),-1);
+ $text=$langs->trans("HelpAbandonOther");
+ if ($fac->close_note) $text.='
'.$langs->trans("Reason").':'.$fac->close_note;
+ print $html->textwithhelp($langs->trans("Abandoned").':',$text,-1);
print ' | '.price($fac->total_ttc - $totalpaye).' | '.$langs->trans('Currency'.$conf->monnaie).' |
';
$resteapayeraffiche=0;
}