outputObjectInterface
This method allows:
- Associating an object with the output event.
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\storeroom\OutputObjectInterfaceRequestType.java |
Return | web\wwwroot\ws\java\storeroom\OutputObjectInterfaceResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
OUTPUTEVENTID | X | Output event ID # |
OBJECTID | X | Object ID # |
STORAGEPLACEID | X | Storage place ID # |
AMOUNT | X | Quantity |
LOTNUMBER | Lot number | |
SERIALNUMBER | Serial number | |
DTVALIDITY | Validity date. Date format must be Y-M-D (Year-Month-Day) |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:storeroom">
<soapenv:Header/>
<soapenv:Body>
<urn:outputObjectInterface>
<!--You may enter the following 7 items in any order-->
<urn:OutputEventId>?</urn:OutputEventId>
<urn:ObjectId>?</urn:ObjectId>
<urn:StoragePlaceId>?</urn:StoragePlaceId>
<urn:Amount>?</urn:Amount>
<urn:LotNumber>?</urn:LotNumber>
<urn:SerialNumber>?</urn:SerialNumber>
<urn:ValidityDate>?</urn:ValidityDate>
</urn:outputObjectInterface>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: Operation successfully performed. FAILURE: Returns a message regarding the error that occurred |