Skip to content
Snippets Groups Projects
Commit 82e5aad8 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Usage of not defined var

parent 97b176ba
No related branches found
No related tags found
No related merge requests found
......@@ -493,14 +493,14 @@ class FactureRec extends Facture
$sql.= ") VALUES (";
$sql.= "'".$facid."'";
$sql.= ", '".$this->db->escape($desc)."'";
$sql.= ", ".price2num($price);
$sql.= ", ".price2num($pu_ht);
$sql.= ", ".price2num($qty);
$sql.= ", ".price2num($txtva);
$sql.= ", ".($fk_product?"'".$fk_product."'":"null");
$sql.= ", ".$product_type;
$sql.= ", '".price2num($remise_percent)."'";
$sql.= ", '".price2num($pu_ht)."'";
$sql.= ", '".price2num($remise)."'";
$sql.= ", null";
$sql.= ", '".price2num($total_ht)."'";
$sql.= ", '".price2num($total_tva)."'";
$sql.= ", '".price2num($total_ttc)."'";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment