diff --git a/htdocs/fourn/facture/card.php b/htdocs/fourn/facture/card.php
index 5558bb26207..ce1e6a06136 100644
--- a/htdocs/fourn/facture/card.php
+++ b/htdocs/fourn/facture/card.php
@@ -3251,7 +3251,6 @@ if ($action == 'create') {
print '';
print '
'.(!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency).' '.price(price2num($object->multicurrency_tx*$resteapayeraffiche, 'MT')).' | | ';
}
-
} else // Credit note
{
$cssforamountpaymentcomplete = 'amountpaymentneutral';
@@ -3275,7 +3274,7 @@ if ($action == 'create') {
print '';
print '';
print ''.price($sign * $resteapayeraffiche).' | | ';
-
+
// Remainder to pay back Multicurrency
if ($object->multicurrency_code != $conf->currency || $object->multicurrency_tx != 1) {
print '| ';
@@ -3289,7 +3288,7 @@ if ($action == 'create') {
print ' | ';
print ''.(!empty($object->multicurrency_code) ? $object->multicurrency_code : $conf->currency).' '.price(price2num($sign * $object->multicurrency_tx * $resteapayeraffiche, 'MT')).' | |
';
}
-
+
// Sold credit note
// print '| '.$langs->trans('TotalTTC').' : | ';
// print ''.price($sign *
|