Removed debugging function

This commit is contained in:
Marcos García de La Fuente 2015-05-10 01:28:40 +02:00
parent f8e8b39ff2
commit f6616deef3

View File

@ -493,7 +493,7 @@ class Product extends CommonObject
$sql.= ", accountancy_code_sell= '" . $this->accountancy_code_sell."'";
$sql.= ", desiredstock = " . ((isset($this->desiredstock) && $this->desiredstock != '') ? $this->desiredstock : "null");
$sql.= " WHERE rowid = " . $id;
var_dump($sql);die;
dol_syslog(get_class($this)."update sql=".$sql);
$resql=$this->db->query($sql);
if ($resql)