diff --git a/htdocs/product/price.php b/htdocs/product/price.php
index 88c6c3e57b1..3be258f4243 100644
--- a/htdocs/product/price.php
+++ b/htdocs/product/price.php
@@ -1269,14 +1269,14 @@ if ($result)
}
else
{
- print '
' . ($objp->price_base_type != 'TTC' ? price($objp->price) : ''). " | ";
- print '' . ($objp->price_base_type == 'TTC' ? price($objp->price_ttc) : '') . " | ";
+ print '' . price($objp->price). " | ";
+ print '' . price($objp->price_ttc) . " | ";
if (! empty($conf->dynamicprices->enabled)) { //Only if module is enabled
print ' | ';
}
}
- print '' . ($objp->price_base_type != 'TTC' ? price($objp->price_min) : '') . ' | ';
- print '' . ($objp->price_base_type == 'TTC' ? price($objp->price_min_ttc) : '') . ' | ';
+ print '' . price($objp->price_min) . ' | ';
+ print '' . price($objp->price_min_ttc) . ' | ';
// User
print '' . img_object($langs->trans("ShowUser"), 'user') . ' ' . $objp->login . ' | ';