IEditSessionAddOrderCombo Method |
Create order combo item. Order must contain new combo items.
Namespace:
Resto.Front.Api.Editors
Assembly:
Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntax INewOrderComboStub AddOrderCombo(
Guid id,
string name,
int amount,
decimal price,
Guid sourceActionId,
Guid programId,
IReadOnlyDictionary<ComboGroupIdAndName, IOrderCookingItemStub> comboItems,
IOrderStub order,
IOrderGuestItemStub guest,
IProductSize size = null
)
Parameters
- id
- Type: SystemGuid
Unique identifier of the new combo. 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(). - name
- Type: SystemString
Name of combo. - amount
- Type: SystemInt32
Amount of combo. - price
- Type: SystemDecimal
Price of combo. - sourceActionId
- Type: SystemGuid
Unique identifier of source combo (template identifier). - programId
- Type: SystemGuid
Identifier of the loyalty program. - comboItems
- Type: System.Collections.GenericIReadOnlyDictionaryComboGroupIdAndName, IOrderCookingItemStub
Combo items dictionary. Key - combo group identifier with its name, Value - item id (must be contained in order). - order
- Type: Resto.Front.Api.Editors.StubsIOrderStub
Order to which combo will be added. - guest
- Type: Resto.Front.Api.Editors.StubsIOrderGuestItemStub
Guest to which combo will be added. - size (Optional)
- Type: Resto.Front.Api.Data.AssortmentIProductSize
Size of the combo if it's template has scale, otherwise null.
Return Value
Type:
INewOrderComboStubSee Also