Enhancements for Quick Check in "Restaurant" Service Type
v8
In the V8 API, it has become possible to distinguish an order created in quick check mode from an order for a table. Additionally, it is now possible to create either type of order or convert them.
A new property has been added to the order
IOrder.IsFastFoodOrder,
which indicates whether the order was created in the “Fast Food” service type or if the order was created as a quick check in the “Restaurant” service type.
For tabs, this property is also set to true, so the additional check for tabs remains the verification of the property
IOrder.TabName
for null.
In the method
CreateOrder
a new optional argument has been introduced with a default value: bool? isFastFoodOrder = null.
If its value is set to true, the order will be displayed as a quick check.
A new method has also been added for converting a tab or an order created in quick check mode into a table service order:
ConvertToTableServiceOrder.
You can read about tabs in the note, in this news and in this news.
You can read about the new functionality in quick check mode in this article.