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