pixiDispoGetOpenSupplierOrders
Deprecated
Since pixi version: LOU Official (6.3.0.4452) Additional notes: Supplier orderline can have following status:
"NEW"- New created Orderlines
"BES" - Ordered at supplier
"CON" - Confirmed from suppplier
"CLS" - Closed
Request
Request body
Name | Type | Required | Description |
---|---|---|---|
RowCount | integer | false | Number of records to be returned Type: int Default value: 10000 Example: 123 Available from: 23.06 (23.6.0.38511) |
SOrderlineKeyStart | integer | false | Type: int Default value: 0 Example: 123 Available from: LOU Official (6.3.0.4452) |
Request Example
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body xmlns="">
<pixiDispoGetOpenSupplierOrders>
<SOrderlineKeyStart>0</SOrderlineKeyStart>
<RowCount>0</RowCount>
</pixiDispoGetOpenSupplierOrders>
</Body>
</Envelope>
Response
Name | Type | Description |
---|---|---|
Qty | integer | Type: int Available from: 25.06 (25.6.0.58802) |
Type | string | Type: varchar Available from: 25.06 (25.6.0.58802) |
ItemKey | integer | pixi* item ID Type: int Available from: 25.06 (25.6.0.58802) |
SupplNr | string | Supplier number (code) Type: varchar Available from: 25.06 (25.6.0.58802) |
ItemNrInt | string | Shop item number Type: varchar Available from: 25.06 (25.6.0.58802) |
QtyOrdered | integer | Type: int Available from: 25.06 (25.6.0.58802) |
ItemNrSuppl | string | Supplier item number Type: varchar Available from: 25.06 (25.6.0.58802) |
QtyReceived | integer | Type: int Available from: 25.06 (25.6.0.58802) |
SupplOrderNR | integer | Type: int Available from: 25.06 (25.6.0.58802) |
SOrderlineKey | integer | Type: int Available from: 25.06 (25.6.0.58802) |
SupplOrderDate | string | Type: varchar Available from: 25.06 (25.6.0.58802) |
QtyNotDelivered | integer | Quantity of items that were not yet delivered Type: int Available from: 25.06 (25.6.0.58802) |
EstimatedDeliveryDate | string | Type: varchar Available from: 25.06 (25.6.0.58802) |
Response Example
<PixiDispoGetOpenSupplierOrdersPost200TextXmlResponse>
<SOrderlineKey>0</SOrderlineKey>
<ItemKey>0</ItemKey>
<EstimatedDeliveryDate>string</EstimatedDeliveryDate>
<Qty>0</Qty>
<Type>string</Type>
<SupplNr>string</SupplNr>
<ItemNrInt>string</ItemNrInt>
<ItemNrSuppl>string</ItemNrSuppl>
<SupplOrderDate>string</SupplOrderDate>
<SupplOrderNR>0</SupplOrderNR>
<QtyOrdered>0</QtyOrdered>
<QtyReceived>0</QtyReceived>
<QtyNotDelivered>0</QtyNotDelivered>
</PixiDispoGetOpenSupplierOrdersPost200TextXmlResponse>
HTTP Example
POST https://apigateway.descartes.com/tms/pixi/
Content-Type: text/xml; charset=utf-8
# echo -n '{{username}}:{{password}}' | base64 | pbcopy
Authorization: Basic {{token}}
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns1="https://apigateway.descartes.com/tms/pixi/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:pixiDispoGetOpenSupplierOrders>
<RowCount xsi:type="xsd:integer">123</RowCount>
<SOrderlineKeyStart xsi:type="xsd:integer">123</SOrderlineKeyStart>
</ns1:pixiDispoGetOpenSupplierOrders>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
PHP Example
<?php
getPixiSoapClientResponse('pixiDispoGetOpenSupplierOrders', [
'RowCount' => '123', // integer
'SOrderlineKeyStart' => '123', // integer
]);
function getPixiSoapClientResponse(string $method, array $arguments = [])
{
$soapArguments = [];
foreach ($arguments as $key => $value) {
$soapArguments[] = new SoapVar($value, null, '', '', $key);
}
$soapClient = new SoapClient(null, [
'login' => '...',
'password' => '...',
'uri' => 'https://apigateway.descartes.com/tms/pixi/',
'location' => 'https://apigateway.descartes.com/tms/pixi/',
]);
return $soapClient->__call($method, $soapArguments);
}