dolibarr 18.0.6
|
Public Member Functions | |
__construct () | |
Constructor. | |
get ($id) | |
Get properties of a shipment object. | |
index ($sortfield="t.rowid", $sortorder='ASC', $limit=100, $page=0, $thirdparty_ids='', $sqlfilters='') | |
List shipments. | |
post ($request_data=null) | |
Create shipment object. | |
deleteLine ($id, $lineid) | |
Get lines of an shipment. | |
put ($id, $request_data=null) | |
Update shipment general fields (won't touch lines of shipment) | |
delete ($id) | |
Delete shipment. | |
validate ($id, $notrigger=0) | |
Validate a shipment. | |
close ($id, $notrigger=0) | |
Classify the shipment 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_shipments.class.php.
|
protected |
Clean sensible object datas.
Object | $object | Object to clean |
Reimplemented from DolibarrApi.
Definition at line 672 of file api_shipments.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 714 of file api_shipments.class.php.
Referenced by post().
Shipments::close | ( | $id, | |
$notrigger = 0 ) |
Classify the shipment as invoiced.
int | $id | Id of the shipment |
@url POST {id}/setinvoiced
RestException | 400 |
RestException | 401 |
RestException | 404 |
RestException | 405 Create a shipment using an existing order. |
int | $orderid | Id of the order |
@url POST /createfromorder/{orderid}
RestException | 400 |
RestException | 401 |
RestException | 404 |
RestException | 405 Close a shipment (Classify it as "Delivered") |
int | $id | Expedition ID |
int | $notrigger | Disabled triggers |
@url POST {id}/close
Definition at line 634 of file api_shipments.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
Shipments::delete | ( | $id | ) |
Delete shipment.
int | $id | Shipment ID |
Definition at line 467 of file api_shipments.class.php.
References DolibarrApi\_checkAccessToResource().
Shipments::deleteLine | ( | $id, | |
$lineid ) |
Get lines of an shipment.
int | $id | Id of shipment |
@url GET {id}/lines
int | $id | Id of shipment to update |
array | $request_data | ShipmentLine data |
@url POST {id}/lines
int | $id | Id of shipment to update |
int | $lineid | Id of line to update |
array | $request_data | ShipmentLine data |
@url PUT {id}/lines/{lineid}
int | $id | Id of shipment to update |
int | $lineid | Id of line to delete |
@url DELETE {id}/lines/{lineid}
RestException | 401 |
RestException | 404 |
Definition at line 399 of file api_shipments.class.php.
References DolibarrApi\_checkAccessToResource().
Shipments::get | ( | $id | ) |
Get properties of a shipment object.
Return an array with shipment informations
int | $id | ID of shipment |
RestException |
Definition at line 66 of file api_shipments.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().
Shipments::index | ( | $sortfield = "t.rowid", | |
$sortorder = 'ASC', | |||
$limit = 100, | |||
$page = 0, | |||
$thirdparty_ids = '', | |||
$sqlfilters = '' ) |
List shipments.
Get a list of shipments
string | $sortfield | Sort field |
string | $sortorder | Sort order |
int | $limit | Limit for list |
int | $page | Page number |
string | $thirdparty_ids | Thirdparty ids to filter shipments 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 102 of file api_shipments.class.php.
References _cleanObjectDatas(), dol_syslog(), and forgeSQLFromUniversalSearchCriteria().
Shipments::post | ( | $request_data = null | ) |
Create shipment object.
array | $request_data | Request data |
Definition at line 194 of file api_shipments.class.php.
References _validate().
Shipments::put | ( | $id, | |
$request_data = null ) |
Update shipment general fields (won't touch lines of shipment)
int | $id | Id of shipment to update |
array | $request_data | Datas |
Definition at line 432 of file api_shipments.class.php.
References DolibarrApi\_checkAccessToResource().
Shipments::validate | ( | $id, | |
$notrigger = 0 ) |
Validate a shipment.
This may record stock movements if module stock is enabled and option to decrease stock on shipment is on.
int | $id | Shipment ID |
int | $notrigger | 1=Does not execute triggers, 0= execute triggers |
@url POST {id}/validate
Definition at line 512 of file api_shipments.class.php.
References DolibarrApi\_checkAccessToResource(), and _cleanObjectDatas().