|
dolibarr 23.0.3
|


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, $loadlinkedobjects=0) | |
| 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. | |
| validate ($id, $notrigger=0) | |
| Validate an intervention. | |
| close ($id, $notrigger=0) | |
| Close an intervention. | |
| deleteInterventionalLine ($id, $lineid) | |
| Delete the line of the interventional. | |
| settodraft ($id) | |
| Sets an intervention as draft. | |
| addContact ($id, $fk_socpeople, $type_contact, $source, $notrigger=0) | |
| Adds a contact to an interventional. | |
| getContacts ($id, $type='') | |
| Get contacts of given interventional. | |
| deleteContact ($id, $contactid, $type) | |
| Delete a contact type of given interventional. | |
| updateInterventionalLine ($id, $lineid, $request_data) | |
| update the line of the interventional. | |
Public Member Functions inherited from DolibarrApi | |
| __construct ($db, $cachedir='', $refreshCache=false) | |
| Constructor. | |
Protected Member Functions | |
| _cleanObjectDatas ($object) | |
| Clean sensible object data @phpstan-template T. | |
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 42 of file api_interventions.class.php.
|
protected |
Clean sensible object data @phpstan-template T.
| Object | $object | Object to clean |
Reimplemented from DolibarrApi.
Definition at line 878 of file api_interventions.class.php.
References $object.
Referenced by addContact(), close(), deleteContact(), deleteInterventionalLine(), get(), index(), settodraft(), updateInterventionalLine(), and validate().
|
private |
Validate fields before create or update object.
| ?array<null|int|float|string> | $data Data to validate |
| RestException |
Definition at line 855 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 897 of file api_interventions.class.php.
Referenced by postLine().
| Interventions::addContact | ( | $id, | |
| $fk_socpeople, | |||
| $type_contact, | |||
| $source, | |||
| $notrigger = 0 ) |
Adds a contact to an interventional.
| int | $id | Order ID |
| int | $fk_socpeople | Id of thirdparty contact (if source = 'external') or id of user (if source = 'internal') to link |
| string | $type_contact | Type of contact (code). Must a code found into table llx_c_type_contact. For example: BILLING |
| string | $source | external=Contact extern (llx_socpeople), internal=Contact intern (llx_user) |
| int | $notrigger | Disable all triggers |
@url POST {id}/contacts
| RestException | 304 |
| RestException | 401 |
| RestException | 404 |
| RestException | 500 System error |
Definition at line 676 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Interventions::close | ( | $id, | |
| $notrigger = 0 ) |
Close 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 {@required true} |
@url POST {id}/close
| RestException |
Definition at line 544 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 451 of file api_interventions.class.php.
References $id, and DolibarrApi\_checkAccessToResource().
| Interventions::deleteContact | ( | $id, | |
| $contactid, | |||
| $type ) |
Delete a contact type of given interventional.
| int | $id | Id of interventional to update |
| int | $contactid | Row key of the contact in the array contact_ids. |
| string | $type | Type of the contact (BILLING, SHIPPING, CUSTOMER). |
@url DELETE {id}/contact/{contactid}/{type}
| RestException | 401 |
| RestException | 404 |
| RestException | 500 System error |
Definition at line 754 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Interventions::deleteInterventionalLine | ( | $id, | |
| $lineid ) |
Delete the line of the interventional.
| int | $id | ID of the interventional |
| int | $lineid | ID of the line to delete |
| RestException |
@url DELETE /{id}/lines/{lineid}
Definition at line 583 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| 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 91 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Interventions::getContacts | ( | $id, | |
| $type = '' ) |
Get contacts of given interventional.
Return an array with contact information
| int | $id | ID of interventional |
| string | $type | Type of the interventional |
@url GET {id}/contacts
| RestException |
Definition at line 716 of file api_interventions.class.php.
References $id, and DolibarrApi\_checkAccessToResource().
| Interventions::index | ( | $sortfield = "t.rowid", | |
| $sortorder = 'ASC', | |||
| $limit = 100, | |||
| $page = 0, | |||
| $thirdparty_ids = '', | |||
| $sqlfilters = '', | |||
| $properties = '', | |||
| $contact_type = '', | |||
| $pagination_data = false, | |||
| $loadlinkedobjects = 0 ) |
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* |
| int | $loadlinkedobjects | Load also linked objects |
| RestException |
Definition at line 146 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 272 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 398 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 309 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), DolibarrApi\_checkValForAPI(), and sanitizeVal().
| Interventions::settodraft | ( | $id | ) |
Sets an intervention as draft.
| int | $id | ID of intervention |
@url POST {id}/settodraft
| RestException | 304 |
| RestException | 403 |
| RestException | 404 |
| RestException | 500 System error |
Definition at line 632 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Interventions::updateInterventionalLine | ( | $id, | |
| $lineid, | |||
| $request_data ) |
update the line of the interventional.
| int | $id | Id of order to update |
| int | $lineid | Id of line to update |
| array | $request_data | InternventionalLine data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data |
| RestException |
@url PUT /{id}/lines/{lineid}
Definition at line 798 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), _cleanObjectDatas(), and sanitizeVal().
| 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 496 of file api_interventions.class.php.
References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().