mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-19 15:23:19 +01:00
Update loanschedule.class.php (#36272)
Solve Error when schedule loans : "ERROR: 55000: currval of sequence "llx_payment_loan_rowid_seq" is not yet defined in this session LOCATION: currval_oid, sequence.c:884" Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
This commit is contained in:
@@ -221,7 +221,7 @@ class LoanSchedule extends CommonObject
|
||||
dol_syslog(get_class($this)."::create", LOG_DEBUG);
|
||||
$resql = $this->db->query($sql);
|
||||
if ($resql) {
|
||||
$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."payment_loan");
|
||||
$this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."loan_schedule");
|
||||
} else {
|
||||
$this->error = $this->db->lasterror();
|
||||
$error++;
|
||||
|
||||
Reference in New Issue
Block a user