dolibarr 19.0.3
|
Public Member Functions | |
__construct () | |
Constructor. | |
get ($id) | |
Get properties of a Expense Report object Return an array with Expense Report information. | |
index ($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $thirdparty_ids='', $sqlfilters='', $properties='') | |
List of interventions Return a list of interventions. | |
post ($request_data=null) | |
Create intervention object. | |
postLine ($id, $request_data=null) | |
Get lines of an intervention. | |
delete ($id) | |
Delete order. | |
validate ($id, $notrigger=0) | |
Validate an intervention. | |
closeFichinter ($id) | |
Close an intervention. | |
Public Member Functions inherited from DolibarrApi | |
__construct ($db, $cachedir='', $refreshCache=false) | |
Constructor. | |
Protected Member Functions | |
_cleanObjectDatas ($object) | |
Clean sensible object datas. | |
Protected Member Functions inherited from DolibarrApi | |
_checkValForAPI ($field, $value, $object) | |
Check and convert a string depending on its type/name. | |
_filterObjectProperties ($object, $properties) | |
Filter properties that will be returned on object. | |
_checkFilters ($sqlfilters, &$error='') | |
Return if a $sqlfilters parameter is valid Function no more used. | |
Private Member Functions | |
_validate ($data) | |
Validate fields before create or update object. | |
_validateLine ($data) | |
Validate fields before create or update object. | |
Additional Inherited Members | |
Static Protected Member Functions inherited from DolibarrApi | |
static | _checkAccessToResource ($resource, $resource_id=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid') |
Check access by user to a given resource. | |
static | _forge_criteria_callback ($matches) |
Function to forge a SQL criteria from a Generic filter string. | |
Definition at line 35 of file api_interventions.class.php.
|
protected |
Clean sensible object datas.
Object | $object | Object to clean |
Reimplemented from DolibarrApi.
Definition at line 451 of file api_interventions.class.php.
Referenced by closeFichinter(), get(), index(), and validate().
|
private |
Validate fields before create or update object.
array | $data | Data to validate |
RestException |
Definition at line 431 of file api_interventions.class.php.
Referenced by post().
|
private |
Validate fields before create or update object.
array | $data | Data to validate |
RestException |
Definition at line 470 of file api_interventions.class.php.
Referenced by postLine().
Interventions::closeFichinter | ( | $id | ) |
Close an intervention.
int | $id | Intervention ID |
@url POST {id}/close
Definition at line 395 of file api_interventions.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
Interventions::delete | ( | $id | ) |
Delete order.
int | $id | Order ID |
Definition at line 318 of file api_interventions.class.php.
References DolibarrApi\_checkAccessToResource().
Interventions::get | ( | $id | ) |
Get properties of a Expense Report object Return an array with Expense Report information.
int | $id | ID of Expense Report |
RestException |
Definition at line 79 of file api_interventions.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
Interventions::index | ( | $sortfield = "t.rowid", | |
$sortorder = 'ASC', | |||
$limit = 100, | |||
$page = 0, | |||
$thirdparty_ids = '', | |||
$sqlfilters = '', | |||
$properties = '' ) |
List of interventions Return a list of interventions.
string | $sortfield | Sort field |
string | $sortorder | Sort order |
int | $limit | Limit for list |
int | $page | Page number |
string | $thirdparty_ids | Thirdparty ids to filter orders of (example '1' or '1,2,3') {@pattern /^[0-9,]*$/i} |
string | $sqlfilters | Other criteria to filter answers separated by a comma. Syntax example "(t.ref:like:'SO-%') and (t.date_creation:<:'20160101')" |
string | $properties | Restrict the data returned to theses properties. Ignored if empty. Comma separated list of properties names |
RestException |
Definition at line 113 of file api_interventions.class.php.
References _cleanObjectDatas(), DolibarrApi\_filterObjectProperties(), dol_syslog(), and forgeSQLFromUniversalSearchCriteria().
Interventions::post | ( | $request_data = null | ) |
Create intervention object.
array | $request_data | Request data |
Definition at line 203 of file api_interventions.class.php.
References _validate().
Interventions::postLine | ( | $id, | |
$request_data = null ) |
Get lines of an intervention.
int | $id | Id of intervention |
@url GET {id}/lines
int | $id | Id of intervention to update |
array | $request_data | Request data |
@url POST {id}/lines
Definition at line 271 of file api_interventions.class.php.
References DolibarrApi\_checkAccessToResource(), and _validateLine().
Interventions::validate | ( | $id, | |
$notrigger = 0 ) |
Validate an intervention.
If you get a bad value for param notrigger check, provide this in body { "notrigger": 0 }
int | $id | Intervention ID |
int | $notrigger | 1=Does not execute triggers, 0= execute triggers |
@url POST {id}/validate
Definition at line 359 of file api_interventions.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().