diff --git a/htdocs/product/fiche.php b/htdocs/product/fiche.php
index d87564a575f..71ada686b4f 100644
--- a/htdocs/product/fiche.php
+++ b/htdocs/product/fiche.php
@@ -658,7 +658,16 @@ if ($_GET["id"] || $_GET["ref"])
if($conf->global->PRODUIT_MULTIPRICES == 1)
{
print '
| '.$langs->trans("SellingPrice").' 1 | ';
- print ''.price($product->price);
+
+ if ($product->price_base_type == 'TTC')
+ {
+ print ' | '.price($product->price_ttc);
+ }
+ else
+ {
+ print ' | '.price($product->price);
+ }
+
print ' '.$langs->trans($product->price_base_type);
print ' |
';
for($i=2;$i<=$conf->global->PRODUIT_MULTIPRICES_LIMIT;$i++)