IEditSession.AddOrderProductItem Method (Guid, Decimal, IProduct, IOrderStub, IOrderGuestItemStub, IProductSize, OrderItemCourse, Nullable<Decimal>) |
Adds assortment position to the guest in existing order. User must have rights to edit orders.
Namespace:
Resto.Front.Api.Editors
Assembly:
Resto.Front.Api.V6 (in Resto.Front.Api.V6.dll)
SyntaxINewOrderProductItemStub AddOrderProductItem(
Guid id,
decimal amount,
IProduct product,
IOrderStub order,
IOrderGuestItemStub guest,
IProductSize size,
OrderItemCourse course = OrderItemCourse.First,
decimal? predefinedPrice = null
)
Parameters
- id
- Type: System.Guid
Unique identifier of the new item in the order. MUST be unique not only for the order, but for the whole system. Therefore it must be taken from some synchronization operation or generated with Guid.NewGuid() - amount
- Type: System.Decimal
For positions with weight: weight in defined measure unit. For positions without weight: amount of the position. Can be from 0.001 to 999.999 - product
- Type: Resto.Front.Api.Data.Assortment.IProduct
Assortment position. Must exist in iikoFront assortment. - order
- Type: Resto.Front.Api.Editors.Stubs.IOrderStub
Order to which position will be added - guest
- Type: Resto.Front.Api.Editors.Stubs.IOrderGuestItemStub
Guest to which position will be added - size
- Type: Resto.Front.Api.Data.Assortment.IProductSize
Size of the order item if it's product has scale, otherwise null. - course (Optional)
- Type: Resto.Front.Api.Data.Orders.OrderItemCourse
Cooking and serving priority of the order item. - predefinedPrice (Optional)
- Type: System.Nullable<Decimal>
Predefined fixed price of the order item, allows to use external quotation instead of default price list. null means default price.
Return Value
Type:
INewOrderProductItemStub
See Also