From f0e8c1e391e76e7367a62ab0285cb7f7c181a443 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Thu, 21 Jun 2007 13:36:40 +0000 Subject: [PATCH] Fix: l'ajout de ligne produit ne fonctionnait plus --- htdocs/facture.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/facture.class.php b/htdocs/facture.class.php index 82c5e7aceef..5510590c8bf 100644 --- a/htdocs/facture.class.php +++ b/htdocs/facture.class.php @@ -2859,7 +2859,7 @@ class FactureLigne $sql.= ' '.$this->fk_export_compta.','; $sql.= ' '.$rangtouse.','; $sql.= " '".$this->info_bits."',"; - $sql.= " ".price2num($this->total_ht).", "; + $sql.= " ".price2num($this->total_ht).","; $sql.= " ".price2num($this->total_tva).","; $sql.= " ".price2num($this->total_ttc); $sql.= ')';