diff --git a/htdocs/compta/facture/fiche-rec.php b/htdocs/compta/facture/fiche-rec.php index 5224c825003..47f24fdebe5 100644 --- a/htdocs/compta/facture/fiche-rec.php +++ b/htdocs/compta/facture/fiche-rec.php @@ -756,9 +756,10 @@ else print '
| '.$langs->trans("Description").' | '; - print ''.$langs->trans("Price").' | '; - print ''.$langs->trans("ReductionShort").' | '; + print ''.$langs->trans("VAT").' | '; + print ''.$langs->trans("PriceUHT").' | '; print ''.$langs->trans("Qty").' | '; + print ''.$langs->trans("ReductionShort").' | '; if ($conf->global->PRODUCT_USE_UNITS) { print ''.$langs->trans("Unit").' | '; } @@ -827,9 +828,10 @@ else print ''; } + print ''.vatrate($object->lines[$i]->tva_tx, 1).' | '; print ''.price($object->lines[$i]->price).' | '; - print ''.$object->lines[$i]->remise_percent.' % | '; print ''.$object->lines[$i]->qty.' | '; + print ''.$object->lines[$i]->remise_percent.' % | '; if ($conf->global->PRODUCT_USE_UNITS) { print "".$object->lines[$i]->getLabelOfUnit()." | "; }