diff --git a/htdocs/compta/tva/index.php b/htdocs/compta/tva/index.php
index 618ba11a37e..9fb2b890b24 100644
--- a/htdocs/compta/tva/index.php
+++ b/htdocs/compta/tva/index.php
@@ -263,18 +263,18 @@ if (! empty($conf->global->MAIN_FEATURES_LEVEL))
print "
";
print '| ' . $langs->trans("VATDue") . ' | '; // need to add translation
- print '' . price(price2num($total, 1)) . ' | ';
+ print '' . price(price2num($total, 'MT')) . ' | ';
print "
\n";
print "";
print '| ' . $langs->trans("VATPaid") . ' | ';
- print '' . price(price2num($obj->mm, 1)) . " | \n";
+ print '' . price(price2num($obj->mm, 'MT')) . " | \n";
print "
\n";
$restopay = $total - $obj->mm;
print "";
print '| ' . $langs->trans("VATRestopay") . ' | '; // need to add translation
- print '' . price(price2num($restopay, 1)) . ' | ';
+ print '' . price(price2num($restopay, 'MT')) . ' | ';
print "
\n";
print '';