diff --git a/htdocs/product/price.php b/htdocs/product/price.php
index 787cc034f68..aa9a34336b0 100644
--- a/htdocs/product/price.php
+++ b/htdocs/product/price.php
@@ -1188,21 +1188,29 @@ if (!empty($conf->global->PRODUIT_MULTIPRICES) || !empty($conf->global->PRODUIT_
print '';
// Price
- print '
| '.$langs->trans("SellingPrice").' | ';
+ print ' |
| '.$langs->trans("SellingPrice").' | ';
if ($object->price_base_type == 'TTC') {
print price($object->price_ttc).' '.$langs->trans($object->price_base_type);
} else {
print price($object->price).' '.$langs->trans($object->price_base_type);
+ if (!empty($conf->global->PRODUCT_DISPLAY_VAT_INCL_PRICES) && !empty($object->price_ttc)) {
+ print ' - ' . price($object->price_ttc).' '.$langs->trans('TTC') . '';
+ }
}
+
print ' |
';
// Price minimum
- print '| '.$langs->trans("MinPrice").' | ';
+ print ' |
| '.$langs->trans("MinPrice").' | ';
if ($object->price_base_type == 'TTC') {
print price($object->price_min_ttc).' '.$langs->trans($object->price_base_type);
} else {
print price($object->price_min).' '.$langs->trans($object->price_base_type);
+ if (!empty($conf->global->PRODUCT_DISPLAY_VAT_INCL_PRICES) && !empty($object->price_min_ttc)) {
+ print ' - ' . price($object->price_min_ttc).' '.$langs->trans('TTC') . '';
+ }
}
+
print ' |
';
// Price by quantity