Fix return code REST similar for all api with POST

This commit is contained in:
Laurent Destailleur 2016-12-23 02:09:26 +01:00
parent 9e44eb0d15
commit da1d4d80f2

View File

@ -193,7 +193,7 @@ class Thirdparties extends DolibarrApi
$this->company->$field = $value;
}
if ($this->company->create(DolibarrApiAccess::$user) < 0)
throw new RestException(503, 'Error creating thirdparty', array_merge(array($this->company->error), $this->company->errors));
throw new RestException(500, 'Error creating thirdparty', array_merge(array($this->company->error), $this->company->errors));
return $this->company->id;
}