Accept Order
Brief
Accept order requoted by the dealer.
Details
Accept an order requoted by the dealer. TODO: fill the description
To get the updated order information, please fill the following values in the value map:
Parameter name |
Datatype |
Description |
OrderID |
const char * |
The identifier of the order |
To use the command:
Create a request and send it to the server.
Wait for the response using IO2GResponseListener
.
Example: Accept an order [hide]
O2G2Ptr<IO2GValueMap> valuemap = requestFactory->createValueMap(); valuemap->setString(Command, O2G2::Commands::AcceptOrder); valuemap->setString(OrderID, order->getOrderID());