diff --git a/htdocs/comm/fiche.php b/htdocs/comm/fiche.php
index c66642609c4..51d21aff2bb 100644
--- a/htdocs/comm/fiche.php
+++ b/htdocs/comm/fiche.php
@@ -351,7 +351,7 @@ if ($socid > 0)
print '
';
- $sql = "SELECT s.nom, s.rowid, p.rowid as propalid, p.fk_statut, p.price, p.ref, p.remise, ";
+ $sql = "SELECT s.nom, s.rowid, p.rowid as propalid, p.fk_statut, p.total_ht, p.ref, p.remise, ";
$sql.= " ".$db->pdate("p.datep")." as dp, ".$db->pdate("p.fin_validite")." as datelimite";
$sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."c_propalst as c";
$sql .= " WHERE p.fk_soc = s.rowid AND p.fk_statut = c.id";
@@ -381,7 +381,7 @@ if ($socid > 0)
print " ".img_warning();
}
print '| '.dolibarr_print_date($objp->dp)." | \n";
- print ''.price($objp->price).' | ';
+ print ''.price($objp->total_ht).' | ';
print ''.$propal_static->LibStatut($objp->fk_statut,5).' | ';
$var=!$var;
$i++;