From 129a9d9949608a51c28b658b712143f58654cc74 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Thu, 1 Jun 2006 16:27:41 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20affichait=20qu'une=20d=E9cimale?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/compta/propal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/compta/propal.php b/htdocs/compta/propal.php index 1f1595b8e9d..9f739bd8081 100644 --- a/htdocs/compta/propal.php +++ b/htdocs/compta/propal.php @@ -650,7 +650,7 @@ if ($_GET["propalid"] > 0) print ''; print ''.img_object($langs->trans("ShowOrder"),"order").' '.$coms[$i]->ref."\n"; print ''.dolibarr_print_date($coms[$i]->date).''; - print ''.$coms[$i]->total_ttc.''; + print ''.price($coms[$i]->total_ttc).''; print ''.$staticcommande->LibStatut($coms[$i]->statut,$coms[$i]->facturee,3).''; print "\n"; $total = $total + $objp->total;