diff --git a/htdocs/fourn/facture/card.php b/htdocs/fourn/facture/card.php
index 7704466d939..33fac296f8d 100644
--- a/htdocs/fourn/facture/card.php
+++ b/htdocs/fourn/facture/card.php
@@ -3507,7 +3507,7 @@ if ($action == 'create') {
print '
'.price($resteapayeraffiche).' | | ';
// Remainder to pay Multicurrency
- if ($object->multicurrency_code != $conf->currency || $object->multicurrency_tx != 1) {
+ if (isModEnabled('multicurreny') && $object->multicurrency_code != $conf->currency || $object->multicurrency_tx != 1) {
print '| ';
print '';
print $langs->trans('RemainderToPayMulticurrency');
|