From b7d3ae7052deeb70945ad2c498e6f5ddcbc10fae Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Tue, 13 May 2003 18:48:46 +0000 Subject: [PATCH] Suppression de la mise en forme du prix --- htdocs/facture.class.php3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/facture.class.php3 b/htdocs/facture.class.php3 index e5557e437d6..cecec8c9176 100644 --- a/htdocs/facture.class.php3 +++ b/htdocs/facture.class.php3 @@ -146,7 +146,7 @@ class Facture { $faclig = new FactureLigne(); $faclig->desc = stripslashes($objp->description); $faclig->qty = $objp->qty; - $faclig->price = price($objp->price); + $faclig->price = $objp->price; $faclig->tva_taux = $objp->tva_taux; $this->lignes[$i] = $faclig; $i++;