API Invoice Delete doesn't raise exception in some case
This commit is contained in:
marc 2022-07-24 11:57:42 +02:00
parent 336960453f
commit 3ebf64de63

View File

@ -666,7 +666,7 @@ class Invoices extends DolibarrApi
}
$result = $this->invoice->delete(DolibarrApiAccess::$user);
if ($result < 0) {
if ($result <= 0) {
throw new RestException(500, 'Error when deleting invoice');
}