IEditSession.AddOrderModifierItem Method (Guid, Int32, IProduct, IProductGroup, IOrderStub, IOrderProductItemStub, Nullable<Int32>, Nullable<Decimal>) |
Adds order item modifier to the order item in existing order. User must have rights to edit orders.
Namespace:
Resto.Front.Api.Editors
Assembly:
Resto.Front.Api.V7 (in Resto.Front.Api.V7.dll)
SyntaxINewOrderModifierItemStub AddOrderModifierItem(
Guid id,
int amount,
IProduct modifier,
IProductGroup parentGroup,
IOrderStub order,
IOrderProductItemStub productItem,
int? payableAmount = null,
decimal? predefinedPrice = null
)
Parameters
- id
- Type: System.Guid
Unique identifier of the new order item modifier. MUST be unique not only for the order item or order, but for the whole system. Therefore it must be taken from some synchronization operation or generated with Guid.NewGuid() - amount
- Type: System.Int32
Amount of the modifier. Can be from 1 to 999. - modifier
- Type: Resto.Front.Api.Data.Assortment.IProduct
Assortment position for modifier. Must be accessible through IOrderProductItem.AvailableSimpleModifiers collection or one of the IOrderProductItem.AvailableGroupModifiers child collections. - parentGroup
- Type: Resto.Front.Api.Data.Assortment.IProductGroup
Assortment position group for modifier. Must be specified if new modifier will be part of the group modifier. Otherwise null. Group modifier must be chosen from IOrderProductItem.AvailableGroupModifiers - order
- Type: Resto.Front.Api.Editors.Stubs.IOrderStub
Order to which modifier will be added - productItem
- Type: Resto.Front.Api.Editors.Stubs.IOrderProductItemStub
Order item to which modifier will be added. - payableAmount (Optional)
- Type: System.Nullable<Int32>
Custom payable amount. Leave it null to use default logic or set custom value to override default logic. Payable part of the amount must be between zero (which means that whole modifier is free of charge) and amount (which means that whole modifier is payable). - predefinedPrice (Optional)
- Type: System.Nullable<Decimal>
Predefined fixed price of the modifier, allows to use external quotation instead of default price list. null means default price.
Return Value
Type:
INewOrderModifierItemStub
See Also