|
dolibarr 22.0.5
|


Public Member Functions | |
| __construct () | |
| Constructor. | |
| get ($id, $ref='', $ref_ext='', $contact_list=1) | |
| Get an intervention Return an array with intervention information. | |
| index ($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $thirdparty_ids='', $sqlfilters='', $properties='', $contact_type='', $pagination_data=false) | |
| List interventions. | |
| post ($request_data=null) | |
| Create an intervention. | |
| put ($id, $request_data=null) | |
| Update intervention general fields (won't touch lines of fichinter) | |
| postLine ($id, $request_data=null) | |
| Get lines of intervention. | |
| delete ($id) | |
| Delete an intervention. | |
| reopen ($id) | |
| Reopen an intervention. | |
| 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 data. | |
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 38 of file api_interventions.class.php.
|
protected |
Clean sensible object data.
| Object | $object | Object to clean |
Reimplemented from DolibarrApi.
Definition at line 605 of file api_interventions.class.php.
References $object.
Referenced by closeFichinter(), get(), index(), reopen(), and validate().
|
private |
Validate fields before create or update object.
| ?array<null|int|float|string> | $data Data to validate |
| RestException |
Definition at line 585 of file api_interventions.class.php.
Referenced by post().
|
private |
Validate fields before create or update object.
| ?array<string,null|int|float|string> | $data Data to validate |
| RestException |
Definition at line 624 of file api_interventions.class.php.
Referenced by postLine().
| Interventions::closeFichinter | ( | $id | ) |
Close an intervention.
| int | $id | Intervention ID |
@url POST {id}/close
| RestException |
Definition at line 549 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Interventions::delete | ( | $id | ) |
Delete an intervention.
| int | $id | Intervention ID |
| RestException |
Definition at line 427 of file api_interventions.class.php.
References $id, and DolibarrApi\_checkAccessToResource().
| Interventions::get | ( | $id, | |
| $ref = '', | |||
| $ref_ext = '', | |||
| $contact_list = 1 ) |
Get an intervention Return an array with intervention information.
| int | $id | ID of intervention |
| string | $ref | Ref of object |
| string | $ref_ext | External reference of object |
| int | $contact_list | 0: Returned array of contacts/addresses contains all properties, 1: Return array contains just id, -1: Do not return contacts/adddesses |
| RestException |
Definition at line 87 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Interventions::index | ( | $sortfield = "t.rowid", | |
| $sortorder = 'ASC', | |||
| $limit = 100, | |||
| $page = 0, | |||
| $thirdparty_ids = '', | |||
| $sqlfilters = '', | |||
| $properties = '', | |||
| $contact_type = '', | |||
| $pagination_data = false ) |
List interventions.
Get 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 these properties. Ignored if empty. Comma separated list of property names |
| string | $contact_type | Type of contacts: thirdparty, internal or external |
| bool | $pagination_data | If this parameter is set to true the response will include pagination data. Default value is false. Page starts from 0* |
| RestException |
Definition at line 141 of file api_interventions.class.php.
References _cleanObjectDatas(), DolibarrApi\_filterObjectProperties(), dol_syslog(), and forgeSQLFromUniversalSearchCriteria().
| Interventions::post | ( | $request_data = null | ) |
Create an intervention.
| array | $request_data | Request data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data |
| RestException |
Definition at line 248 of file api_interventions.class.php.
References DolibarrApi\_checkValForAPI(), _validate(), and sanitizeVal().
| Interventions::postLine | ( | $id, | |
| $request_data = null ) |
Get lines of intervention.
| int | $id | Id of intervention |
@url GET {id}/lines
| int | $id | ID of intervention to update |
| array | $request_data | Request data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data |
@url POST {id}/lines
| RestException |
Definition at line 374 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), DolibarrApi\_checkValForAPI(), _validateLine(), and sanitizeVal().
| Interventions::put | ( | $id, | |
| $request_data = null ) |
Update intervention general fields (won't touch lines of fichinter)
| int | $id | ID of fichinter to update |
| array | $request_data | Request data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data |
| RestException |
Definition at line 285 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), DolibarrApi\_checkValForAPI(), and sanitizeVal().
| Interventions::reopen | ( | $id | ) |
Reopen an intervention.
| int | $id | Intervention ID |
@url POST {id}/reopen
| RestException |
Definition at line 466 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| 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
| RestException |
Definition at line 509 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().