Skip to content

Commit

Permalink
Merge pull request #27 from simnandez/3.1
Browse files Browse the repository at this point in the history
Fix: [bug 213] CashDesk: Products don't are added to basket
  • Loading branch information
eldy committed Oct 19, 2011
2 parents db406df + e3cba67 commit d641c45
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions htdocs/cashdesk/class/Facturation.class.php
Expand Up @@ -132,6 +132,7 @@ public function ajoutArticle()
$sql.= ", remise_percent";
$sql.= ", remise";
$sql.= ", total_ht";
$sql.= ", total_tva";
$sql.= ", total_ttc";
$sql.= ") VALUES (";
$sql.= $this->id();
Expand All @@ -140,6 +141,7 @@ public function ajoutArticle()
$sql.= ", ".$remise_percent;
$sql.= ", ".price2num($montant_remise_ht);
$sql.= ", ".price2num($total_ht,'MT');
$sql.= ", ".price2num($total_vat,'MT');
$sql.= ", ".price2num($total_ttc,'MT');
$sql.= ")";

Expand Down

0 comments on commit d641c45

Please sign in to comment.