mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Delete intervention API
This commit is contained in:
parent
c7d11daed6
commit
bd00b514bf
|
|
@ -284,6 +284,39 @@ class Interventions extends DolibarrApi
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete order
|
||||
*
|
||||
* @param int $id Order ID
|
||||
* @return array
|
||||
*/
|
||||
function delete($id)
|
||||
{
|
||||
if(! DolibarrApiAccess::$user->rights->ficheinter->supprimer) {
|
||||
throw new RestException(401);
|
||||
}
|
||||
$result = $this->fichinter->fetch($id);
|
||||
if( ! $result ) {
|
||||
throw new RestException(404, 'Intervention not found');
|
||||
}
|
||||
|
||||
if( ! DolibarrApi::_checkAccessToResource('commande',$this->fichinter->id)) {
|
||||
throw new RestException(401, 'Access not allowed for login '.DolibarrApiAccess::$user->login);
|
||||
}
|
||||
|
||||
if( ! $this->fichinter->delete(DolibarrApiAccess::$user)) {
|
||||
throw new RestException(500, 'Error when delete intervention : '.$this->fichinter->error);
|
||||
}
|
||||
|
||||
return array(
|
||||
'success' => array(
|
||||
'code' => 200,
|
||||
'message' => 'Intervention deleted'
|
||||
)
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Validate an intervention
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user