StockService :: GetStockByRefArticleGamme
The POST method, is used to retrieve data.
The list of parameters is not mandatory to request:
- string refArticle,
- int idDepot,
- int idGamme1,
- int idGamme2
Returns data as JSON, for use in PHP, you need to convert JSON in StdClass PHP (PHP function: json_decode ()).
Input parameters:
{"refArticle":"BAOR01","idDepot":1,"idEmplacement":1,"idGamme1":1,"idGamme2":0}
Example:
require (__DIR__ . '/service/WebServices100.php'); use services\WebServices100; // add parameters $data = new stdClass(); $data->refArticle = "BAOR01"; $data->idDepot = 1; $data->idEmplacement = 1; $data->idGamme1 = 1; $data->idGamme2 = 0; $json_data = json_encode($data); $url = 'http://<Your ip>:<Your Port>/WebServices100/<Your environment>/StockService/rest/GetStockByRefArticleGamme'; // Send requests to receive data $result = WebServices100::getData($url, $json_data); $response= json_decode($result);
Result:
stdClass Object
(
[IdDepot] => 1
[RefArticle] => BAOR01
[IdGamme1] => 1
[IdGamme2] => 0
[QteStock] => 48
[QteReserve] => 5
[QteCommmande] => 0
[QteMini] => 15
[QteMaxi] => 35
[EstPrincipal] =>
[IdEmplacementPrincipal] => 1
[MontantStock] => 13088.47
)