2
0
forked from Wavyzz/dolibarr

FIX #29029 Impossible to delete an order line

Impossible to delete a line because the code lead to add an error if the request is valid therefore leading to a rollback of the request
This commit is contained in:
Delthair
2024-03-22 18:49:12 +01:00
committed by GitHub
parent fa45588c49
commit 5f1796b39a

View File

@@ -4445,7 +4445,7 @@ class OrderLine extends CommonOrderLine
dol_syslog("OrderLine::delete", LOG_DEBUG);
$resql = $this->db->query($sql);
if ($resql) {
if (!$resql) {
$this->error = $this->db->lasterror();
$error++;
}