From 85819307955f8b3cd6683840eac91ea9b805491b Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 15 Oct 2007 21:26:35 +0000 Subject: [PATCH] Fix: champ "price" obsolete --- htdocs/compta/facture.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/compta/facture.php b/htdocs/compta/facture.php index 8d859f04a5d..efef4b0fbb7 100644 --- a/htdocs/compta/facture.php +++ b/htdocs/compta/facture.php @@ -2801,9 +2801,9 @@ else print ''; print ''.img_object($langs->trans('ShowPropal'),'propal').' '.$objp->ref.''; print ''.dolibarr_print_date($objp->dp).''; - print ''.price($objp->price).''; + print ''.price($objp->total_ht).''; print ''; - $total = $total + $objp->price; + $total = $total + $objp->total_ht; $i++; } print ' '.$langs->trans('TotalHT').''.price($total).'';