|
dolibarr 18.0.8
|


Public Member Functions | |
| __construct () | |
| Constructor. | |
| get ($id) | |
| Get properties of a reception object. | |
| index ($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $thirdparty_ids='', $sqlfilters='') | |
| List receptions. | |
| post ($request_data=null) | |
| Create reception object. | |
| deleteLine ($id, $lineid) | |
| Get lines of an reception. | |
| put ($id, $request_data=null) | |
| Update reception general fields (won't touch lines of reception) | |
| delete ($id) | |
| Delete reception. | |
| validate ($id, $notrigger=0) | |
| Validate a reception. | |
| close ($id, $notrigger=0) | |
| Classify the reception as invoiced. | |
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. | |
| _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. | |
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 29 of file api_receptions.class.php.
|
protected |
Clean sensible object datas.
| Object | $object | Object to clean |
Reimplemented from DolibarrApi.
Definition at line 678 of file api_receptions.class.php.
Referenced by close(), get(), index(), and validate().
|
private |
Validate fields before create or update object.
| array | $data | Array with data to verify |
| RestException |
Definition at line 715 of file api_receptions.class.php.
Referenced by post().
| Receptions::close | ( | $id, | |
| $notrigger = 0 ) |
Classify the reception as invoiced.
| int | $id | Id of the reception |
@url POST {id}/setinvoiced
| RestException | 400 |
| RestException | 401 |
| RestException | 404 |
| RestException | 405 Create a reception using an existing order. |
| int | $orderid | Id of the order |
@url POST /createfromorder/{orderid}
| RestException | 400 |
| RestException | 401 |
| RestException | 404 |
| RestException | 405 Close a reception (Classify it as "Delivered") |
| int | $id | Reception ID |
| int | $notrigger | Disabled triggers |
@url POST {id}/close
Definition at line 640 of file api_receptions.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Receptions::delete | ( | $id | ) |
Delete reception.
| int | $id | Reception ID |
Definition at line 473 of file api_receptions.class.php.
References DolibarrApi\_checkAccessToResource().
| Receptions::deleteLine | ( | $id, | |
| $lineid ) |
Get lines of an reception.
| int | $id | Id of reception |
@url GET {id}/lines
| int | $id | Id of reception to update |
| array | $request_data | ShipmentLine data |
@url POST {id}/lines
| int | $id | Id of reception to update |
| int | $lineid | Id of line to update |
| array | $request_data | ShipmentLine data |
@url PUT {id}/lines/{lineid}
| int | $id | Id of reception to update |
| int | $lineid | Id of line to delete |
@url DELETE {id}/lines/{lineid}
| RestException | 401 |
| RestException | 404 |
Definition at line 396 of file api_receptions.class.php.
References DolibarrApi\_checkAccessToResource().
| Receptions::get | ( | $id | ) |
Get properties of a reception object.
Return an array with reception informations
| int | $id | ID of reception |
| RestException |
Definition at line 65 of file api_receptions.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
| Receptions::index | ( | $sortfield = "t.rowid", | |
| $sortorder = 'ASC', | |||
| $limit = 100, | |||
| $page = 0, | |||
| $thirdparty_ids = '', | |||
| $sqlfilters = '' ) |
List receptions.
Get a list of receptions
| string | $sortfield | Sort field |
| string | $sortorder | Sort order |
| int | $limit | Limit for list |
| int | $page | Page number |
| string | $thirdparty_ids | Thirdparty ids to filter receptions 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')" |
| RestException |
Definition at line 101 of file api_receptions.class.php.
References _cleanObjectDatas(), dol_syslog(), and forgeSQLFromUniversalSearchCriteria().
| Receptions::post | ( | $request_data = null | ) |
Create reception object.
| array | $request_data | Request data |
Definition at line 193 of file api_receptions.class.php.
References _validate().
| Receptions::put | ( | $id, | |
| $request_data = null ) |
Update reception general fields (won't touch lines of reception)
| int | $id | Id of reception to update |
| array | $request_data | Datas |
Definition at line 433 of file api_receptions.class.php.
References DolibarrApi\_checkAccessToResource(), and DolibarrApi\_checkValForAPI().
| Receptions::validate | ( | $id, | |
| $notrigger = 0 ) |
Validate a reception.
This may record stock movements if module stock is enabled and option to decrease stock on reception is on.
| int | $id | Reception ID |
| int | $notrigger | 1=Does not execute triggers, 0= execute triggers |
@url POST {id}/validate
Definition at line 518 of file api_receptions.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().