Merge branch 'develop' into dev_prodlist

This commit is contained in:
florian HENRY 2017-06-29 16:32:07 +02:00
commit adf4c343c3

View File

@ -429,7 +429,7 @@ class AccountancyCategory
return - 1;
}
}
public function getCats() {
global $db, $langs, $user, $mysoc;
@ -462,7 +462,7 @@ class AccountancyCategory
if ($num) {
while ( $i < $num ) {
$obj = $this->db->fetch_object($resql);
$data[] = array (
'rowid' => $obj->rowid,
'code' => $obj->code,
@ -483,10 +483,10 @@ class AccountancyCategory
return - 1;
}
}
// calcule
// calcule
const PATTERN = '/(?:\-?\d+(?:\.?\d+)?[\+\-\*\/])+\-?\d+(?:\.?\d+)?/';
const PARENTHESIS_DEPTH = 10;
@ -535,10 +535,12 @@ class AccountancyCategory
return 0;
}
/**
* get cpts of category
*
* @param int $cat_id Id accounting account category
*
* @return array Result in table
*/
public function getCptsCat($cat_id) {
@ -554,7 +556,7 @@ class AccountancyCategory
$sql .= " FROM " . MAIN_DB_PREFIX . "accounting_account as t";
$sql .= " WHERE t.fk_accounting_category = ".$cat_id;
$sql .= " ORDER BY t.account_number ";
//echo $sql;
$resql = $this->db->query($sql);
@ -582,5 +584,5 @@ class AccountancyCategory
return -1;
}
}
}