|
@@ -54,18 +54,15 @@ class BookKeeping extends CommonObject
|
|
|
* @var string Name of table without prefix where object is stored
|
|
|
*/
|
|
|
public $table_element = 'accounting_bookkeeping';
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
public $entity = 1;
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
*
|
|
|
* @var BookKeepingLine[] Lines
|
|
|
*/
|
|
|
public $lines = array ();
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
*
|
|
|
* @var int ID
|
|
@@ -89,10 +86,10 @@ class BookKeeping extends CommonObject
|
|
|
public $import_key;
|
|
|
public $code_journal;
|
|
|
public $piece_num;
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
*/
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Constructor
|
|
|
*
|
|
@@ -101,7 +98,7 @@ class BookKeeping extends CommonObject
|
|
|
public function __construct(DoliDB $db) {
|
|
|
$this->db = $db;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Create object into database
|
|
|
*
|
|
@@ -110,12 +107,12 @@ class BookKeeping extends CommonObject
|
|
|
* @return int <0 if KO, Id of created object if OK
|
|
|
*/
|
|
|
public function create(User $user, $notrigger = false) {
|
|
|
- global $conf, $langs;
|
|
|
-
|
|
|
+ global $conf, $langs;
|
|
|
+
|
|
|
dol_syslog(__METHOD__, LOG_DEBUG);
|
|
|
-
|
|
|
+
|
|
|
$error = 0;
|
|
|
-
|
|
|
+
|
|
|
// Clean parameters
|
|
|
if (isset($this->doc_type)) {
|
|
|
$this->doc_type = trim($this->doc_type);
|
|
@@ -177,15 +174,14 @@ class BookKeeping extends CommonObject
|
|
|
{
|
|
|
$this->errors[]=$langs->trans('ErrorFieldAccountNotDefinedForInvoiceLine', $this->fk_doc, $this->doc_type);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
return -1;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
$this->db->begin();
|
|
|
-
|
|
|
+
|
|
|
$this->piece_num = 0;
|
|
|
-
|
|
|
+
|
|
|
// First check if line not yet already in bookkeeping
|
|
|
$sql = "SELECT count(*) as nb";
|
|
|
$sql .= " FROM " . MAIN_DB_PREFIX . $this->table_element;
|
|
@@ -193,10 +189,10 @@ class BookKeeping extends CommonObject
|
|
|
$sql .= " AND fk_doc = " . $this->fk_doc;
|
|
|
$sql .= " AND fk_docdet = " . $this->fk_docdet; // This field can be 0 is record is for several lines
|
|
|
$sql .= " AND numero_compte = '" . $this->db->escape($this->numero_compte) . "'";
|
|
|
- $sql .= " AND entity IN (" . getEntity("accountancy", 1) . ")";
|
|
|
-
|
|
|
+ $sql .= " AND entity IN (" . getEntity("accountancy", 1) . ")";
|
|
|
+
|
|
|
$resql = $this->db->query($sql);
|
|
|
-
|
|
|
+
|
|
|
if ($resql) {
|
|
|
$row = $this->db->fetch_object($resql);
|
|
|
if ($row->nb == 0)
|
|
@@ -207,8 +203,8 @@ class BookKeeping extends CommonObject
|
|
|
$sqlnum .= " WHERE doc_type = '" . $this->db->escape($this->doc_type) . "'"; // For example doc_type = 'bank'
|
|
|
$sqlnum .= " AND fk_docdet = " . $this->db->escape($this->fk_docdet); // fk_docdet is rowid into llx_bank or llx_facturedet or llx_facturefourndet, or ...
|
|
|
$sqlnum .= " AND doc_ref = '" . $this->db->escape($this->doc_ref) . "'"; // ref of source object
|
|
|
- $sqlnum .= " AND entity IN (" . getEntity("accountancy", 1) . ")";
|
|
|
-
|
|
|
+ $sqlnum .= " AND entity IN (" . getEntity("accountancy", 1) . ")";
|
|
|
+
|
|
|
dol_syslog(get_class($this) . ":: create sqlnum=" . $sqlnum, LOG_DEBUG);
|
|
|
$resqlnum = $this->db->query($sqlnum);
|
|
|
if ($resqlnum) {
|
|
@@ -219,8 +215,8 @@ class BookKeeping extends CommonObject
|
|
|
if (empty($this->piece_num)) {
|
|
|
$sqlnum = "SELECT MAX(piece_num)+1 as maxpiecenum";
|
|
|
$sqlnum .= " FROM " . MAIN_DB_PREFIX . $this->table_element;
|
|
|
- $sqlnum .= " WHERE entity IN (" . getEntity("accountancy", 1) . ")";
|
|
|
-
|
|
|
+ $sqlnum .= " WHERE entity IN (" . getEntity("accountancy", 1) . ")";
|
|
|
+
|
|
|
dol_syslog(get_class($this) . ":: create sqlnum=" . $sqlnum, LOG_DEBUG);
|
|
|
$resqlnum = $this->db->query($sqlnum);
|
|
|
if ($resqlnum) {
|
|
@@ -232,12 +228,12 @@ class BookKeeping extends CommonObject
|
|
|
if (empty($this->piece_num)) {
|
|
|
$this->piece_num = 1;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
$now = dol_now();
|
|
|
if (empty($this->date_create)) {
|
|
|
$this->date_create = $now;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
$sql = "INSERT INTO " . MAIN_DB_PREFIX . $this->table_element . " (";
|
|
|
$sql .= "doc_date";
|
|
|
$sql .= ", doc_type";
|
|
@@ -275,7 +271,7 @@ class BookKeeping extends CommonObject
|
|
|
$sql .= "," . $this->piece_num;
|
|
|
$sql .= ", " . (! isset($this->entity) ? '1' : $this->entity);
|
|
|
$sql .= ")";
|
|
|
-
|
|
|
+
|
|
|
dol_syslog(get_class($this) . ":: create sql=" . $sql, LOG_DEBUG);
|
|
|
$resql = $this->db->query($sql);
|
|
|
if ($resql) {
|
|
@@ -308,7 +304,7 @@ class BookKeeping extends CommonObject
|
|
|
$this->errors[] = 'Error ' . $this->db->lasterror();
|
|
|
dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (! $error) {
|
|
|
|
|
|
if (! $notrigger) {
|
|
@@ -321,7 +317,7 @@ class BookKeeping extends CommonObject
|
|
|
// // End call triggers
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// Commit or rollback
|
|
|
if ($error) {
|
|
|
$this->db->rollback();
|
|
@@ -331,7 +327,7 @@ class BookKeeping extends CommonObject
|
|
|
return $result;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Create object into database
|
|
|
*
|
|
@@ -341,11 +337,11 @@ class BookKeeping extends CommonObject
|
|
|
*/
|
|
|
public function createStd(User $user, $notrigger = false) {
|
|
|
dol_syslog(__METHOD__, LOG_DEBUG);
|
|
|
-
|
|
|
+
|
|
|
$error = 0;
|
|
|
-
|
|
|
+
|
|
|
// Clean parameters
|
|
|
-
|
|
|
+
|
|
|
if (isset($this->doc_type)) {
|
|
|
$this->doc_type = trim($this->doc_type);
|
|
|
}
|
|
@@ -393,10 +389,10 @@ class BookKeeping extends CommonObject
|
|
|
}
|
|
|
if (empty($this->debit)) $this->debit = 0;
|
|
|
if (empty($this->credit)) $this->credit = 0;
|
|
|
-
|
|
|
+
|
|
|
// Check parameters
|
|
|
// Put here code to add control on parameters values
|
|
|
-
|
|
|
+
|
|
|
// Insert request
|
|
|
$sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '(';
|
|
|
$sql .= 'doc_date,';
|
|
@@ -435,19 +431,19 @@ class BookKeeping extends CommonObject
|
|
|
$sql .= ' ' . (empty($this->piece_num) ? 'NULL' : $this->piece_num).',';
|
|
|
$sql .= ' ' . (! isset($this->entity) ? '1' : $this->entity);
|
|
|
$sql .= ')';
|
|
|
-
|
|
|
+
|
|
|
$this->db->begin();
|
|
|
-
|
|
|
+
|
|
|
$resql = $this->db->query($sql);
|
|
|
if (! $resql) {
|
|
|
$error ++;
|
|
|
$this->errors[] = 'Error ' . $this->db->lasterror();
|
|
|
dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (! $error) {
|
|
|
$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element);
|
|
|
-
|
|
|
+
|
|
|
if (! $notrigger) {
|
|
|
// Uncomment this and change MYOBJECT to your own tag if you
|
|
|
// want this action to call a trigger.
|
|
@@ -458,7 +454,7 @@ class BookKeeping extends CommonObject
|
|
|
// // End call triggers
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// Commit or rollback
|
|
|
if ($error) {
|
|
|
$this->db->rollback();
|
|
@@ -470,7 +466,7 @@ class BookKeeping extends CommonObject
|
|
|
return $this->id;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Load object in memory from the database
|
|
|
*
|
|
@@ -481,9 +477,9 @@ class BookKeeping extends CommonObject
|
|
|
*/
|
|
|
public function fetch($id, $ref = null) {
|
|
|
global $conf;
|
|
|
-
|
|
|
+
|
|
|
dol_syslog(__METHOD__, LOG_DEBUG);
|
|
|
-
|
|
|
+
|
|
|
$sql = 'SELECT';
|
|
|
$sql .= ' t.rowid,';
|
|
|
$sql .= " t.doc_date,";
|
|
@@ -510,15 +506,15 @@ class BookKeeping extends CommonObject
|
|
|
} else {
|
|
|
$sql .= ' AND t.rowid = ' . $id;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
$resql = $this->db->query($sql);
|
|
|
if ($resql) {
|
|
|
$numrows = $this->db->num_rows($resql);
|
|
|
if ($numrows) {
|
|
|
$obj = $this->db->fetch_object($resql);
|
|
|
-
|
|
|
+
|
|
|
$this->id = $obj->rowid;
|
|
|
-
|
|
|
+
|
|
|
$this->doc_date = $this->db->jdate($obj->doc_date);
|
|
|
$this->doc_type = $obj->doc_type;
|
|
|
$this->doc_ref = $obj->doc_ref;
|
|
@@ -537,7 +533,7 @@ class BookKeeping extends CommonObject
|
|
|
$this->piece_num = $obj->piece_num;
|
|
|
}
|
|
|
$this->db->free($resql);
|
|
|
-
|
|
|
+
|
|
|
if ($numrows) {
|
|
|
return 1;
|
|
|
} else {
|
|
@@ -565,9 +561,9 @@ class BookKeeping extends CommonObject
|
|
|
*/
|
|
|
public function fetchAllByAccount($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, array $filter = array(), $filtermode = 'AND') {
|
|
|
global $conf;
|
|
|
-
|
|
|
- dol_syslog(__METHOD__, LOG_DEBUG);
|
|
|
-
|
|
|
+
|
|
|
+ dol_syslog(__METHOD__, LOG_DEBUG);
|
|
|
+
|
|
|
$sql = 'SELECT';
|
|
|
$sql .= ' t.rowid,';
|
|
|
$sql .= " t.doc_date,";
|
|
@@ -622,16 +618,16 @@ class BookKeeping extends CommonObject
|
|
|
$sql .= ' ' . $this->db->plimit($limit + 1, $offset);
|
|
|
}
|
|
|
$this->lines = array ();
|
|
|
-
|
|
|
+
|
|
|
$resql = $this->db->query($sql);
|
|
|
if ($resql) {
|
|
|
$num = $this->db->num_rows($resql);
|
|
|
-
|
|
|
+
|
|
|
while ( $obj = $this->db->fetch_object($resql) ) {
|
|
|
$line = new BookKeepingLine();
|
|
|
-
|
|
|
+
|
|
|
$line->id = $obj->rowid;
|
|
|
-
|
|
|
+
|
|
|
$line->doc_date = $this->db->jdate($obj->doc_date);
|
|
|
$line->doc_type = $obj->doc_type;
|
|
|
$line->doc_ref = $obj->doc_ref;
|
|
@@ -648,16 +644,16 @@ class BookKeeping extends CommonObject
|
|
|
$line->import_key = $obj->import_key;
|
|
|
$line->code_journal = $obj->code_journal;
|
|
|
$line->piece_num = $obj->piece_num;
|
|
|
-
|
|
|
+
|
|
|
$this->lines[] = $line;
|
|
|
}
|
|
|
$this->db->free($resql);
|
|
|
-
|
|
|
+
|
|
|
return $num;
|
|
|
} else {
|
|
|
$this->errors[] = 'Error ' . $this->db->lasterror();
|
|
|
dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
|
|
|
-
|
|
|
+
|
|
|
return - 1;
|
|
|
}
|
|
|
}
|
|
@@ -677,9 +673,9 @@ class BookKeeping extends CommonObject
|
|
|
*/
|
|
|
public function fetchAll($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, array $filter = array(), $filtermode = 'AND') {
|
|
|
global $conf;
|
|
|
-
|
|
|
+
|
|
|
dol_syslog(__METHOD__, LOG_DEBUG);
|
|
|
-
|
|
|
+
|
|
|
$sql = 'SELECT';
|
|
|
$sql .= ' t.rowid,';
|
|
|
$sql .= " t.doc_date,";
|
|
@@ -723,7 +719,7 @@ class BookKeeping extends CommonObject
|
|
|
if (count($sqlwhere) > 0) {
|
|
|
$sql .= ' AND ' . implode(' ' . $filtermode . ' ', $sqlwhere);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (! empty($sortfield)) {
|
|
|
$sql .= $this->db->order($sortfield, $sortorder);
|
|
|
}
|
|
@@ -731,16 +727,16 @@ class BookKeeping extends CommonObject
|
|
|
$sql .= ' ' . $this->db->plimit($limit + 1, $offset);
|
|
|
}
|
|
|
$this->lines = array ();
|
|
|
-
|
|
|
+
|
|
|
$resql = $this->db->query($sql);
|
|
|
if ($resql) {
|
|
|
$num = $this->db->num_rows($resql);
|
|
|
-
|
|
|
+
|
|
|
while ( $obj = $this->db->fetch_object($resql) ) {
|
|
|
$line = new BookKeepingLine();
|
|
|
-
|
|
|
+
|
|
|
$line->id = $obj->rowid;
|
|
|
-
|
|
|
+
|
|
|
$line->doc_date = $this->db->jdate($obj->doc_date);
|
|
|
$line->doc_type = $obj->doc_type;
|
|
|
$line->doc_ref = $obj->doc_ref;
|
|
@@ -757,20 +753,20 @@ class BookKeeping extends CommonObject
|
|
|
$line->import_key = $obj->import_key;
|
|
|
$line->code_journal = $obj->code_journal;
|
|
|
$line->piece_num = $obj->piece_num;
|
|
|
-
|
|
|
+
|
|
|
$this->lines[] = $line;
|
|
|
}
|
|
|
$this->db->free($resql);
|
|
|
-
|
|
|
+
|
|
|
return $num;
|
|
|
} else {
|
|
|
$this->errors[] = 'Error ' . $this->db->lasterror();
|
|
|
dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
|
|
|
-
|
|
|
+
|
|
|
return - 1;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Load object in memory from the database
|
|
|
*
|
|
@@ -785,9 +781,9 @@ class BookKeeping extends CommonObject
|
|
|
*/
|
|
|
public function fetchAllBalance($sortorder = '', $sortfield = '', $limit = 0, $offset = 0, array $filter = array(), $filtermode = 'AND') {
|
|
|
global $conf;
|
|
|
-
|
|
|
+
|
|
|
dol_syslog(__METHOD__, LOG_DEBUG);
|
|
|
-
|
|
|
+
|
|
|
$sql = 'SELECT';
|
|
|
$sql .= " t.numero_compte,";
|
|
|
$sql .= " SUM(t.debit) as debit,";
|
|
@@ -817,9 +813,9 @@ class BookKeeping extends CommonObject
|
|
|
if (count($sqlwhere) > 0) {
|
|
|
$sql .= ' AND ' . implode(' ' . $filtermode . ' ', $sqlwhere);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
$sql .= ' GROUP BY t.numero_compte';
|
|
|
-
|
|
|
+
|
|
|
if (! empty($sortfield)) {
|
|
|
$sql .= $this->db->order($sortfield, $sortorder);
|
|
|
}
|
|
@@ -827,30 +823,30 @@ class BookKeeping extends CommonObject
|
|
|
$sql .= ' ' . $this->db->plimit($limit + 1, $offset);
|
|
|
}
|
|
|
$this->lines = array ();
|
|
|
-
|
|
|
+
|
|
|
$resql = $this->db->query($sql);
|
|
|
if ($resql) {
|
|
|
$num = $this->db->num_rows($resql);
|
|
|
-
|
|
|
+
|
|
|
while ( $obj = $this->db->fetch_object($resql) ) {
|
|
|
$line = new BookKeepingLine();
|
|
|
-
|
|
|
+
|
|
|
$line->numero_compte = $obj->numero_compte;
|
|
|
$line->debit = $obj->debit;
|
|
|
$line->credit = $obj->credit;
|
|
|
$this->lines[] = $line;
|
|
|
}
|
|
|
$this->db->free($resql);
|
|
|
-
|
|
|
+
|
|
|
return $num;
|
|
|
} else {
|
|
|
$this->errors[] = 'Error ' . $this->db->lasterror();
|
|
|
dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
|
|
|
-
|
|
|
+
|
|
|
return - 1;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Update object into database
|
|
|
*
|
|
@@ -861,11 +857,10 @@ class BookKeeping extends CommonObject
|
|
|
*/
|
|
|
public function update(User $user, $notrigger = false) {
|
|
|
$error = 0;
|
|
|
-
|
|
|
+
|
|
|
dol_syslog(__METHOD__, LOG_DEBUG);
|
|
|
-
|
|
|
+
|
|
|
// Clean parameters
|
|
|
-
|
|
|
if (isset($this->doc_type)) {
|
|
|
$this->doc_type = trim($this->doc_type);
|
|
|
}
|
|
@@ -911,10 +906,10 @@ class BookKeeping extends CommonObject
|
|
|
if (isset($this->piece_num)) {
|
|
|
$this->piece_num = trim($this->piece_num);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// Check parameters
|
|
|
// Put here code to add a control on parameters values
|
|
|
-
|
|
|
+
|
|
|
// Update request
|
|
|
$sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET';
|
|
|
$sql .= ' doc_date = ' . (! isset($this->doc_date) || dol_strlen($this->doc_date) != 0 ? "'" . $this->db->idate($this->doc_date) . "'" : 'null') . ',';
|
|
@@ -934,16 +929,16 @@ class BookKeeping extends CommonObject
|
|
|
$sql .= ' code_journal = ' . (isset($this->code_journal) ? "'" . $this->db->escape($this->code_journal) . "'" : "null") . ',';
|
|
|
$sql .= ' piece_num = ' . (isset($this->piece_num) ? $this->piece_num : "null");
|
|
|
$sql .= ' WHERE rowid=' . $this->id;
|
|
|
-
|
|
|
+
|
|
|
$this->db->begin();
|
|
|
-
|
|
|
+
|
|
|
$resql = $this->db->query($sql);
|
|
|
if (! $resql) {
|
|
|
$error ++;
|
|
|
$this->errors[] = 'Error ' . $this->db->lasterror();
|
|
|
dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (! $error && ! $notrigger) {
|
|
|
// Uncomment this and change MYOBJECT to your own tag if you
|
|
|
// want this action calls a trigger.
|
|
@@ -953,19 +948,19 @@ class BookKeeping extends CommonObject
|
|
|
// if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail}
|
|
|
// // End call triggers
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// Commit or rollback
|
|
|
if ($error) {
|
|
|
$this->db->rollback();
|
|
|
-
|
|
|
+
|
|
|
return - 1 * $error;
|
|
|
} else {
|
|
|
$this->db->commit();
|
|
|
-
|
|
|
+
|
|
|
return 1;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Delete object in database
|
|
|
*
|
|
@@ -976,27 +971,27 @@ class BookKeeping extends CommonObject
|
|
|
*/
|
|
|
public function delete(User $user, $notrigger = false) {
|
|
|
dol_syslog(__METHOD__, LOG_DEBUG);
|
|
|
-
|
|
|
+
|
|
|
$error = 0;
|
|
|
-
|
|
|
+
|
|
|
$this->db->begin();
|
|
|
-
|
|
|
+
|
|
|
if (! $error) {
|
|
|
if (! $notrigger) {
|
|
|
// Uncomment this and change MYOBJECT to your own tag if you
|
|
|
// want this action calls a trigger.
|
|
|
-
|
|
|
+
|
|
|
// // Call triggers
|
|
|
// $result=$this->call_trigger('MYOBJECT_DELETE',$user);
|
|
|
// if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail}
|
|
|
// // End call triggers
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (! $error) {
|
|
|
$sql = 'DELETE FROM ' . MAIN_DB_PREFIX . $this->table_element;
|
|
|
$sql .= ' WHERE rowid=' . $this->id;
|
|
|
-
|
|
|
+
|
|
|
$resql = $this->db->query($sql);
|
|
|
if (! $resql) {
|
|
|
$error ++;
|
|
@@ -1004,19 +999,19 @@ class BookKeeping extends CommonObject
|
|
|
dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// Commit or rollback
|
|
|
if ($error) {
|
|
|
$this->db->rollback();
|
|
|
-
|
|
|
+
|
|
|
return - 1 * $error;
|
|
|
} else {
|
|
|
$this->db->commit();
|
|
|
-
|
|
|
+
|
|
|
return 1;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Delete bookkepping by importkey
|
|
|
*
|
|
@@ -1025,25 +1020,25 @@ class BookKeeping extends CommonObject
|
|
|
*/
|
|
|
function deleteByImportkey($importkey) {
|
|
|
$this->db->begin();
|
|
|
-
|
|
|
+
|
|
|
// first check if line not yet in bookkeeping
|
|
|
$sql = "DELETE";
|
|
|
$sql .= " FROM " . MAIN_DB_PREFIX . $this->table_element;
|
|
|
$sql .= " WHERE import_key = '" . $importkey . "'";
|
|
|
-
|
|
|
+
|
|
|
$resql = $this->db->query($sql);
|
|
|
-
|
|
|
+
|
|
|
if (! $resql) {
|
|
|
$this->errors[] = "Error " . $this->db->lasterror();
|
|
|
dol_syslog(get_class($this)."::delete Error " . $this->db->lasterror(), LOG_ERR);
|
|
|
$this->db->rollback();
|
|
|
return - 1;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
$this->db->commit();
|
|
|
return 1;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Delete bookkepping by year
|
|
|
*
|
|
@@ -1079,7 +1074,7 @@ class BookKeeping extends CommonObject
|
|
|
$this->db->rollback();
|
|
|
return -1;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
$this->db->commit();
|
|
|
return 1;
|
|
|
}
|
|
@@ -1094,7 +1089,7 @@ class BookKeeping extends CommonObject
|
|
|
global $conf;
|
|
|
|
|
|
$this->db->begin();
|
|
|
-
|
|
|
+
|
|
|
// first check if line not yet in bookkeeping
|
|
|
$sql = "DELETE";
|
|
|
$sql .= " FROM " . MAIN_DB_PREFIX . $this->table_element;
|
|
@@ -1112,7 +1107,7 @@ class BookKeeping extends CommonObject
|
|
|
$this->db->rollback();
|
|
|
return - 1;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
$this->db->commit();
|
|
|
return 1;
|
|
|
}
|
|
@@ -1126,7 +1121,7 @@ class BookKeeping extends CommonObject
|
|
|
*/
|
|
|
public function createFromClone($fromid) {
|
|
|
dol_syslog(__METHOD__, LOG_DEBUG);
|
|
|
-
|
|
|
+
|
|
|
global $user;
|
|
|
$error = 0;
|
|
|
$object = new Accountingbookkeeping($this->db);
|
|
@@ -1154,7 +1149,7 @@ class BookKeeping extends CommonObject
|
|
|
// End
|
|
|
if (! $error) {
|
|
|
$this->db->commit();
|
|
|
-
|
|
|
+
|
|
|
return $object->id;
|
|
|
} else {
|
|
|
$this->db->rollback();
|
|
@@ -1237,7 +1232,7 @@ class BookKeeping extends CommonObject
|
|
|
|
|
|
$sql = "SELECT MAX(piece_num)+1 as max FROM " . MAIN_DB_PREFIX . $this->table_element;
|
|
|
$sql .= " WHERE entity IN (" . getEntity("accountancy", 1) . ")";
|
|
|
-
|
|
|
+
|
|
|
dol_syslog(get_class($this) . "getNextNumMvt sql=" . $sql, LOG_DEBUG);
|
|
|
$result = $this->db->query($sql);
|
|
|
|
|
@@ -1433,8 +1428,7 @@ class BookKeeping extends CommonObject
|
|
|
return $out;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
/**
|
|
|
* Description of a root accounting account
|
|
|
*
|
|
@@ -1442,10 +1436,10 @@ class BookKeeping extends CommonObject
|
|
|
* @return string Root account
|
|
|
*/
|
|
|
function get_compte_racine($account = null)
|
|
|
- {
|
|
|
+ {
|
|
|
global $conf;
|
|
|
$pcgver = $conf->global->CHARTOFACCOUNTS;
|
|
|
-
|
|
|
+
|
|
|
$sql = "SELECT root.account_number, root.label as label";
|
|
|
$sql .= " FROM " . MAIN_DB_PREFIX . "accounting_account as aa";
|
|
|
$sql .= " INNER JOIN " . MAIN_DB_PREFIX . "accounting_system as asy ON aa.fk_pcg_version = asy.pcg_version";
|
|
@@ -1456,7 +1450,7 @@ class BookKeeping extends CommonObject
|
|
|
$sql .= " AND parent.active = 1";
|
|
|
$sql .= " AND root.active = 1";
|
|
|
$sql .= " AND aa.entity IN (" . getEntity("accountancy", 1) . ")";
|
|
|
-
|
|
|
+
|
|
|
dol_syslog(get_class($this) . "::select_account sql=" . $sql, LOG_DEBUG);
|
|
|
$resql = $this->db->query($sql);
|
|
|
if ($resql) {
|
|
@@ -1464,9 +1458,9 @@ class BookKeeping extends CommonObject
|
|
|
if ($this->db->num_rows($resql)) {
|
|
|
$obj = $this->db->fetch_object($resql);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
return $obj->label;
|
|
|
-
|
|
|
+
|
|
|
} else {
|
|
|
$this->error = "Error " . $this->db->lasterror();
|
|
|
dol_syslog(__METHOD__ . " " . $this->error, LOG_ERR);
|
|
@@ -1483,9 +1477,9 @@ class BookKeeping extends CommonObject
|
|
|
* @return string Account desc
|
|
|
*/
|
|
|
function get_compte_desc($account = null)
|
|
|
- {
|
|
|
+ {
|
|
|
global $conf;
|
|
|
-
|
|
|
+
|
|
|
$pcgver = $conf->global->CHARTOFACCOUNTS;
|
|
|
$sql = "SELECT aa.account_number, aa.label, aa.rowid, aa.fk_pcg_version, cat.label as category";
|
|
|
$sql .= " FROM " . MAIN_DB_PREFIX . "accounting_account as aa ";
|
|
@@ -1495,7 +1489,7 @@ class BookKeeping extends CommonObject
|
|
|
$sql .= " AND aa.active = 1";
|
|
|
$sql .= " LEFT JOIN " . MAIN_DB_PREFIX . "c_accounting_category as cat ON aa.fk_accounting_category = cat.rowid";
|
|
|
$sql .= " WHERE aa.entity IN (" . getEntity("accountancy", 1) . ")";
|
|
|
-
|
|
|
+
|
|
|
dol_syslog(get_class($this) . "::select_account sql=" . $sql, LOG_DEBUG);
|
|
|
$resql = $this->db->query($sql);
|
|
|
if ($resql) {
|
|
@@ -1503,12 +1497,10 @@ class BookKeeping extends CommonObject
|
|
|
if ($this->db->num_rows($resql)) {
|
|
|
$obj = $this->db->fetch_object($resql);
|
|
|
}
|
|
|
-
|
|
|
- if(empty($obj->category)){
|
|
|
+ if(empty($obj->category)){
|
|
|
return $obj->label;
|
|
|
}else{
|
|
|
return $obj->label.' ('.$obj->category.')';
|
|
|
-
|
|
|
}
|
|
|
} else {
|
|
|
$this->error = "Error " . $this->db->lasterror();
|