Click or drag to resize

OrderItemCourse Enumeration

Describes the course (cooking and serving sequence) of an order item.

Namespace:  Resto.Front.Api.V4.Data.Orders
Assembly:  Resto.Front.Api.V4 (in Resto.Front.Api.V4.dll)
Syntax
C#
public enum OrderItemCourse
Members
  Member nameValueDescription
Vip0Order item should be cooked and served as soon as possible, this is highest priority.
First1Order item cooking should start immediately after service cheque printing, this is default priority.
Second2Order item cooking should start after second course serve cheque printing, items of this priority should be served after First.
Third3Order item cooking should start after third course serve cheque printing, items of this priority should be served after Second.
Fourth4Order item cooking should start after fourth course serve cheque printing, items of this priority should be served after Third.
Fifth5Order item cooking should start after fifth course serve cheque printing, items of this priority should be served after Fourth. This course usage possibility depends on MaxCourseNumber setting.
Sixth6Order item cooking should start after sixth course serve cheque printing, items of this priority should be served after Fifth. This course usage possibility depends on MaxCourseNumber setting.
Seventh7Order item cooking should start after seventh course serve cheque printing, items of this priority should be served after Sixth. This course usage possibility depends on MaxCourseNumber setting.
Eighth8Order item cooking should start after eighth course serve cheque printing, items of this priority should be served after Seventh. This course usage possibility depends on MaxCourseNumber setting.
Ninth9Order item cooking should start after ninth course serve cheque printing, items of this priority should be served after Eighth. This course usage possibility depends on MaxCourseNumber setting.
Tenth10Order item cooking should start after tenth course serve cheque printing, items of this priority should be served after Ninth. This course usage possibility depends on MaxCourseNumber setting.
Default1Order items has first course priority by default.
See Also