diff --git a/htdocs/fourn/facture/fiche.php b/htdocs/fourn/facture/fiche.php
index 91f2ce48064..2f290079837 100644
--- a/htdocs/fourn/facture/fiche.php
+++ b/htdocs/fourn/facture/fiche.php
@@ -507,7 +507,7 @@ else
print '
'.price($fac->lignes[$i]->pu_ht * (1+($fac->lignes[$i]->tva_taux/100))).' | ';
print ''.$fac->lignes[$i]->qty.' | ';
print ''.price($fac->lignes[$i]->total_ht).' | ';
- print ''.$fac->lignes[$i]->tva_taux.' | ';
+ print ''.price($fac->lignes[$i]->tva_taux).' | ';
print ''.price($fac->lignes[$i]->tva).' | ';
print ''.price($fac->lignes[$i]->total_ttc).' | ';
print ''.img_edit().' | ';
@@ -751,10 +751,10 @@ else
}
print '';
print ''.price($fac->lignes[$i]->pu_ht).' | ';
- print ''.price($fac->lignes[$i]->pu_ht * (1+($fac->lignes[$i]->tva_taux/100))).' | ';
+ print ''.price(price2num($fac->lignes[$i]->pu_ht * (1+($fac->lignes[$i]->tva_taux/100)),'MU')).' | ';
print ''.$fac->lignes[$i]->qty.' | ';
print ''.price($fac->lignes[$i]->total_ht).' | ';
- print ''.$fac->lignes[$i]->tva_taux.' | ';
+ print ''.price($fac->lignes[$i]->tva_taux).' | ';
print ''.price($fac->lignes[$i]->tva).' | ';
print ''.price($fac->lignes[$i]->total_ttc).' | ';
print ''.img_edit().' | ';