update camel caps to update_total()

This commit is contained in:
Sergio Sanchis Climent 2016-07-19 13:56:48 +02:00
parent 76f17737be
commit c101a6c483

View File

@ -2798,7 +2798,7 @@ class CommandeFournisseurLigne extends CommonOrderLine
* *
* @return int <0 si ko, >0 si ok * @return int <0 si ko, >0 si ok
*/ */
public function update_total() public function updateTotal()
{ {
$this->db->begin(); $this->db->begin();
@ -2811,7 +2811,7 @@ class CommandeFournisseurLigne extends CommonOrderLine
$sql.= ",total_ttc='".price2num($this->total_ttc)."'"; $sql.= ",total_ttc='".price2num($this->total_ttc)."'";
$sql.= " WHERE rowid = ".$this->rowid; $sql.= " WHERE rowid = ".$this->rowid;
dol_syslog(get_class($this)."::update_total", LOG_DEBUG); dol_syslog(get_class($this)."::updateTotal", LOG_DEBUG);
$resql=$this->db->query($sql); $resql=$this->db->query($sql);
if ($resql) if ($resql)