...
Code Block |
---|
|
<RK7Query>
<RK7CMD CMD="SetRefData" RefName="ModiGroups">
<Items>
<Item GUIDString="{ccfbaa92-5cdb-4c30-9d01-54343d66c830}"
ModiGroupType="mgtCombo"
MainParentIdent="0"
Name="ТестоваяTest комбоcombo группаgroup"
Status="rsActive"/>
</Items>
</RK7CMD>
</RK7Query> |
Where:
...
- — an identifier
- ModiGroupType
...
...
- MainParentIdent constant — an identifier of the parent folder
...
Creating Combo Scheme
Code Block |
---|
|
<RK7Query>
<RK7Command<RK7CMD CMD="GetOrderListSetRefData" RefName="ModiSchemes">
</RK7Command>
</RK7Query> |
Order
Code Block |
---|
|
<RK7Query>
<RK7Command CMD="GetOrder">
<Order guid="{577FFA69-348A-41D7-810B-CF0A32489BE1}"/>
</RK7Command>
</RK7Query> |
Or by the combination of vist+orderident
Code Block |
---|
|
<RK7Query>
<RK7Command CMD="GetOrder">
<Order visit="543555" ident="256"/>
</RK7Command>
</RK7Query> |
New Order
To create a new order, use the request of the following type:
Code Block |
---|
|
<RK7Query>
<RK7CMD CMD="CreateOrder">
<Order persistentComment="100500">
<Table code="1"/>
<Waiter code="5"/>
<Station id="15015"/>
<GuestType id="1"/>
<Guests>
<Guest GuestLabel="1"/>
<Guest GuestLabel="2"/>
<Guest GuestLabel="3"/>
<Guest GuestLabel="4"/>
<Guest GuestLabel="5"/>
</Guests>
</Order>
</RK7CMD>
</RK7Query> |
With the Table being the only obligatory parameter.
Other parameters:
- PersistentComment — the saved comment to the order
- Table — a table, a required parameter to fill in. A call occurs when any of its code, ident, or guid fields are specified. Similarly for all other parameters
- Waiter — on behalf of which waiter the order is being created. If not specified, it is created on behalf of the system
- Station
- GuestType — the type of guests. In the <Guests> section, fill in the guests, set the names.
An empty order is created. After that, the response of the following type is received:
Code Block |
---|
|
<?xml version="1.0" encoding="utf-8"?>
<RK7QueryResult ServerVersion="7.5.3.182" XmlVersion="166" Status="Ok" CMD="CreateOrder" VisitID="356255787" OrderID="256" guid="{6002FD3A-68B6-4FC9-8EB1-D53A697C286C}" ErrorText="" DateTime="2014-11-19T18:23:04" WorkTime="30" Processed="1"/> |
In this response, for the following work, you need to get the combination of visit + orderid or guid.
To fill in the order, send the request of the following type:
Code Block |
---|
|
<Dish id="1043439" quantity="1000" price="0">
<Modi id="100" count="1" price="100"/>
</Dish> |
- Access by id, guid or code
- price — an optional parameter
- count — in units.
The example of adding the dish with a discount to the order:
Code Block |
---|
|
<RK7Query>
<RK7CMD CMD="SaveOrder">
<Order visit="356255787" orderIdent="256"/>2
<Session>
<Station id="15015 <Items>
<Item GUIDString="{e107f57a-97ae-4d94-946b-761335e602ab}"
ModiSchemeType="mstCombo"
MainParentIdent="0"
Name="Test combo scheme"
Status="rsActive"/>
<Dish id="1043439" quantity="1000" price="0"/>
<Discount id="100"/></Items>
</Session>
</RK7CMD>
</RK7Query> |
...
ModiSchemeType — a scheme type, a constant.
Creating Combo Element
Code Block |
---|
|
<RK7Query>
<RK7CMD CMD="SaveOrderSetRefData">
<Order guid="{5AAEB01D-C8BE-4C11-A1EC-348EF361F3AE}"/>
<Session> RefName="Modifiers">
<Station id="15002"/>
<Discount id="1000229"/>
</Session>
</RK7CMD>
</RK7Query> |
The example of adding a discount for a dish to the order:
Code Block |
---|
|
<RK7Query>
<RK7CMD CMD="SaveOrder">
<Order guid="{5AAEB01D-C8BE-4C11-A1EC-348EF361F3AE}"/>
<Session line_guid="{9DC95843-E141-42BF-BB78-9818BCDED302}">
<Dish line_guid="{A409B650-DC23-45B3-8509-97DE257F00EF}"> <Items>
<Item GUIDString="{3d19a58a-abb3-4e27-8364-3e18b429f3e5}"
<Discount code="6"/>
</Dish>
</Session>
</RK7CMD>
</RK7Query> |
<Session line_guid="{9DC95843-E141-42BF-BB78-9818BCDED302}"> — data is taken from the GetOrder request
<Dish line_guid="{A409B650-DC23-45B3-8509-97DE257F00EF}"> — data is taken from the GetOrder request for adding a combo dish to an order
Code Block |
---|
|
<RK7Query>
<RK7CMD CMD="saveOrder">
<order guidMainParentIdent="{4461052Bccfbaa92-CF8B5cdb-4AB84c30-9D9D9d01-40D1D6363EAC54343d66c830}"/>
<Session>
<Combo idDish="1000205" quantity = "1000" >
{D9085A2B-A618-4268-9EC7-E5C8AFEAE442}"
<Component idName="1000033"></Component>Combo dish"
PRICETYPES-3="3000"
<Component id="1000034"></Component>
</Combo>Status="rsActive"/>
</Session>Items>
</RK7CMD>
</RK7Query> |
Where:
- Combo id="1000205" — the dish identifier in the menu
- Component id="1000033" - identifier of the dish linked to the combo element.
Creating Banquet Order
...
- MainParentIdent — a combo group identifier
- Dish — an added dish guide
- PRICETYPES-3 — price setting, instead of 3, specify the price type identifier. The amount is indicated in kopecks, i.e. multiplied by 100. You can specify several types of prices.
Adding Dishes to Combo Scheme
Code Block |
---|
|
<RK7Query>
<RK7CMD CMD=" |
...
...
To get the banquet order properties, use the GetOrder request:
Code Block |
---|
|
<RK7Query>
<RK7CMD CMD="GetOrder">
<Order guid="{871891FB-FFC3-40D7-B2E0-4D30853E88EE}"/>
</RK7CMD>
</RK7Query> |
To add a dish to an order, use the SaveOrder request:
...
RefName="ModiSchemeDetails">
<Items>
<Item GUIDString="{642f29bd-4ea5-4680-b5ab-596a2a0a2d83}"
ModiScheme="1001027"
ModiGroup="1001026"
DefaultModifier="1001029"
DownLimit="1"
UpLimit="2"
Flags="[msoUpLimited,msoDownLimited,msoReplaceDefModifier]"
Status="rsActive"/>
</Items>
</RK7CMD>
</RK7Query> |
...
Deleting Dish from Order
...
Where:
- ModiScheme — a modifier scheme identifier
- ModiGroup — a modifier group identifier
- DefaultModifier — a default dish
- DownLimit — the minimum number of elements
- UpLimit — the maximum number of elements
- Flags — constants, properties
Code Block |
---|
|
<RK7Query>
<RK7CMD CMD="SetRefData" RefName="SaveOrderMenuItems">
<Items>
<Order guid <Item GUIDString="{871891FBefbcd72c-FFC3a6ef-40D74c7b-B2E098cd-4D30853E88EEcd7ae541a717}"/>
<Session>
<Dish code="18" quantity="1000"/>
</Session>
</RK7CMD>
</RK7Query> |
Deleting Order
Befor deleting an order, you should clear it. Only an empty order can be deleted
Code Block |
---|
|
<RK7Query>
<RK7CMD CMD="CloseVisit" VisitID="393873942"/>
</RK7Query> |
Getting the request:
Code Block |
---|
|
<?xml version="1.0" encoding="utf-8"?>
<RK7Query>
<RK7CMD CMD="GetPrintLayout" TextReport="1" >
<Layout id="1001922">
</Layout>
MainParentIdent="1000974"
code="1025"
Name="Комбо по XML"
SaleObjectType="sotComboMenuItem"
ComboScheme="1001027"
Status="rsActive"/>
</Items>
</RK7CMD>
</RK7Query> |
List of Operations Performed at Cash Station
...
...
Where:
- MainParentIdent — an identifier of the parent folder in the menu
- code — a dish code
- name — a dish name
- SaleObjectType — a menu object type, a specified constant for combo dishes
- ComboScheme — a combo scheme identifier