diff --git a/htdocs/product/price.php b/htdocs/product/price.php
index d21574e696e..45ecbd9bafa 100644
--- a/htdocs/product/price.php
+++ b/htdocs/product/price.php
@@ -1278,22 +1278,30 @@ if (!$action || $action == 'delete' || $action == 'showlog_customer_price' || $a
if (empty($conf->global->PRODUIT_MULTIPRICES) && empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES)) {
if ($user->rights->produit->creer || $user->rights->service->creer) {
print '
';
+ } else {
+ print '' . $langs->trans("UpdateDefaultPrice") . '
';
}
}
if (!empty($conf->global->PRODUIT_CUSTOMER_PRICES)) {
if ($user->rights->produit->creer || $user->rights->service->creer) {
print '';
+ } else {
+ print '' . $langs->trans("AddCustomerPrice") . '
';
}
}
if (!empty($conf->global->PRODUIT_MULTIPRICES) || !empty($conf->global->PRODUIT_CUSTOMER_PRICES_BY_QTY_MULTIPRICES)) {
if ($user->rights->produit->creer || $user->rights->service->creer) {
print '';
+ } else {
+ print '' . $langs->trans("UpdateVAT") . '
';
}
if ($user->rights->produit->creer || $user->rights->service->creer) {
print '';
+ } else {
+ print '' . $langs->trans("UpdateLevelPrices") . '
';
}
}
}