dolibarr 23.0.3
Interventions Class Reference
Inheritance diagram for Interventions:
Collaboration diagram for Interventions:

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.
 

Detailed Description

Definition at line 42 of file api_interventions.class.php.

Member Function Documentation

◆ _cleanObjectDatas()

Interventions::_cleanObjectDatas ( $object)
protected

Clean sensible object data @phpstan-template T.

Parameters
Object$objectObject to clean
Returns
Object Object with cleaned properties @phpstan-param T $object @phpstan-return T

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().

◆ _validate()

Interventions::_validate ( $data)
private

Validate fields before create or update object.

Parameters
?array<null|int|float|string>$data Data to validate
Returns
array<string,null|int|float|string>
Exceptions
RestException

Definition at line 855 of file api_interventions.class.php.

Referenced by post().

◆ _validateLine()

Interventions::_validateLine ( $data)
private

Validate fields before create or update object.

Parameters
?array<string,null|int|float|string>$data Data to validate
Returns
array<string,null|int|float|string> Return array with validated mandatory fields and their value
Exceptions
RestException

Definition at line 897 of file api_interventions.class.php.

Referenced by postLine().

◆ addContact()

Interventions::addContact ( $id,
$fk_socpeople,
$type_contact,
$source,
$notrigger = 0 )

Adds a contact to an interventional.

Parameters
int$idOrder ID
int$fk_socpeopleId of thirdparty contact (if source = 'external') or id of user (if source = 'internal') to link
string$type_contactType of contact (code). Must a code found into table llx_c_type_contact. For example: BILLING
string$sourceexternal=Contact extern (llx_socpeople), internal=Contact intern (llx_user)
int$notriggerDisable all triggers

@url POST {id}/contacts

Returns
object
Exceptions
RestException304
RestException401
RestException404
RestException500 System error

Definition at line 676 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().

◆ close()

Interventions::close ( $id,
$notrigger = 0 )

Close an intervention.

If you get a bad value for param notrigger check, provide this in body { "notrigger": 0 }

Since
7.0.0 Initial implementation
23.0.0 Added notrigger parameter
Parameters
int$idIntervention ID
int$notrigger1=Does not execute triggers, 0= execute triggers {@required true}

@url POST {id}/close

Returns
Object
Exceptions
RestException

Definition at line 544 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().

◆ delete()

Interventions::delete ( $id)

Delete an intervention.

Since
8.0.0 Initial implementation
Parameters
int$idIntervention ID
Returns
array @phan-return array<string,array{code:int,message:string}> @phpstan-return array<string,array{code:int,message:string}>
Exceptions
RestException

Definition at line 451 of file api_interventions.class.php.

References $id, and DolibarrApi\_checkAccessToResource().

◆ deleteContact()

Interventions::deleteContact ( $id,
$contactid,
$type )

Delete a contact type of given interventional.

Parameters
int$idId of interventional to update
int$contactidRow key of the contact in the array contact_ids.
string$typeType of the contact (BILLING, SHIPPING, CUSTOMER).
Returns
Object Object deleted

@url DELETE {id}/contact/{contactid}/{type}

Exceptions
RestException401
RestException404
RestException500 System error

Definition at line 754 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().

◆ deleteInterventionalLine()

Interventions::deleteInterventionalLine ( $id,
$lineid )

Delete the line of the interventional.

Parameters
int$idID of the interventional
int$lineidID of the line to delete
Returns
Object Object with cleaned properties
Exceptions
RestException

@url DELETE /{id}/lines/{lineid}

Definition at line 583 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().

◆ get()

Interventions::get ( $id,
$ref = '',
$ref_ext = '',
$contact_list = 1 )

Get an intervention Return an array with intervention information.

Since
7.0.0 Initial implementation
Parameters
int$idID of intervention
string$refRef of object
string$ref_extExternal reference of object
int$contact_list0: Returned array of contacts/addresses contains all properties, 1: Return array contains just id, -1: Do not return contacts/adddesses
Returns
Object Cleaned intervention object
Exceptions
RestException

Definition at line 91 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().

◆ getContacts()

Interventions::getContacts ( $id,
$type = '' )

Get contacts of given interventional.

Return an array with contact information

Parameters
int$idID of interventional
string$typeType of the interventional
Returns
array<int,mixed> Object with cleaned properties

@url GET {id}/contacts

Exceptions
RestException

Definition at line 716 of file api_interventions.class.php.

References $id, and DolibarrApi\_checkAccessToResource().

◆ index()

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

Since
7.0.0 Initial implementation
Parameters
string$sortfieldSort field
string$sortorderSort order
int$limitLimit for list
int$pagePage number
string$thirdparty_idsThirdparty ids to filter orders of (example '1' or '1,2,3') {@pattern /^[0-9,]*$/i}
string$sqlfiltersOther criteria to filter answers separated by a comma. Syntax example "(t.ref:like:'SO-%') and (t.date_creation:<:'20160101')"
string$propertiesRestrict the data returned to these properties. Ignored if empty. Comma separated list of property names
string$contact_typeType of contacts: thirdparty, internal or external
bool$pagination_dataIf this parameter is set to true the response will include pagination data. Default value is false. Page starts from 0*
int$loadlinkedobjectsLoad also linked objects
Returns
array Array of order objects @phan-return array<object> @phpstan-return array<object>
Exceptions
RestException

Definition at line 146 of file api_interventions.class.php.

References _cleanObjectDatas(), DolibarrApi\_filterObjectProperties(), dol_syslog(), and forgeSQLFromUniversalSearchCriteria().

◆ post()

Interventions::post ( $request_data = null)

Create an intervention.

Since
7.0.0 Initial implementation
Parameters
array$request_dataRequest data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data
Returns
int ID of created intervention
Exceptions
RestException

Definition at line 272 of file api_interventions.class.php.

References DolibarrApi\_checkValForAPI(), _validate(), and sanitizeVal().

◆ postLine()

Interventions::postLine ( $id,
$request_data = null )

Get lines of intervention.

Parameters
int$idId of intervention

@url GET {id}/lines

Returns
int Add a line to an intervention
Since
7.0.0 Initial implementation
Parameters
int$idID of intervention to update
array$request_dataRequest data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data

@url POST {id}/lines

Returns
int 0 if ok, <0 if ko
Exceptions
RestException

Definition at line 398 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), DolibarrApi\_checkValForAPI(), _validateLine(), and sanitizeVal().

◆ put()

Interventions::put ( $id,
$request_data = null )

Update intervention general fields (won't touch lines of fichinter)

Since
22.0.0 Initial implementation
Parameters
int$idID of fichinter to update
array$request_dataRequest data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data
Returns
Object Updated object
Exceptions
RestException

Definition at line 309 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), DolibarrApi\_checkValForAPI(), and sanitizeVal().

◆ settodraft()

Interventions::settodraft ( $id)

Sets an intervention as draft.

Since
23.0.0 Initial implementation
Parameters
int$idID of intervention
Returns
Object Object with cleaned properties

@url POST {id}/settodraft

Exceptions
RestException304
RestException403
RestException404
RestException500 System error

Definition at line 632 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().

◆ updateInterventionalLine()

Interventions::updateInterventionalLine ( $id,
$lineid,
$request_data )

update the line of the interventional.

Parameters
int$idId of order to update
int$lineidId of line to update
array$request_dataInternventionalLine data @phan-param ?array<string,string> $request_data @phpstan-param ?array<string,string> $request_data
Returns
Object Object with cleaned properties
Exceptions
RestException

@url PUT /{id}/lines/{lineid}

Definition at line 798 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), _cleanObjectDatas(), and sanitizeVal().

◆ validate()

Interventions::validate ( $id,
$notrigger = 0 )

Validate an intervention.

If you get a bad value for param notrigger check, provide this in body { "notrigger": 0 }

Since
7.0.0 Initial implementation
Parameters
int$idIntervention ID
int$notrigger1=Does not execute triggers, 0= execute triggers

@url POST {id}/validate

Returns
Object
Exceptions
RestException

Definition at line 496 of file api_interventions.class.php.

References $id, DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().


The documentation for this class was generated from the following file: