diff --git a/htdocs/contrat/tpl/linkedobjectblock.tpl.php b/htdocs/contrat/tpl/linkedobjectblock.tpl.php
index 68d7a8462f2..a44f20679b8 100644
--- a/htdocs/contrat/tpl/linkedobjectblock.tpl.php
+++ b/htdocs/contrat/tpl/linkedobjectblock.tpl.php
@@ -52,7 +52,11 @@ foreach($linkedObjectBlock as $key => $objectlink)
|
date_contrat,'day'); ?> |
rights->contrat->lire) {
+ // Price of contract is not shown by default because a contract is a list of service with
+ // start and end date that change with time andd that may be different that the period of reference for price.
+ // So price of a contract does often means nothing. Prices is on the different invoices done on same contract.
+ if ($user->rights->contrat->lire && empty($conf->global->CONTRACT_SHOW_TOTAL_OF_PRODUCT_AS_PRICE))
+ {
$totalcontrat = 0;
foreach ($objectlink->lines as $linecontrat) {
$totalcontrat = $totalcontrat + $linecontrat->total_ht;
@@ -65,4 +69,4 @@ foreach($linkedObjectBlock as $key => $objectlink)
-
\ No newline at end of file
+
|