CheckSplitRequiredResult Enumeration |
Namespace:
Resto.Front.Api.V4.Data.Orders
Assembly:
Resto.Front.Api.V4 (in Resto.Front.Api.V4.dll)
Syntax public enum CheckSplitRequiredResult
Members
| Member name | Value | Description |
---|
| Disabled | 0 |
Not necessary to split order by calling SplitOrderBetweenCashRegisters(ICredentials, IOrder) before any payment actions.
|
| Allowed | 1 |
You should ask user whether call SplitOrderBetweenCashRegisters(ICredentials, IOrder) or not before calling
PayOrderAndPayOutOnUser(ICredentials, IOrder, IPaymentType, Decimal) and PayOrder(ICredentials, IOrder).
|
| Required | 2 |
Necessary to split order by calling SplitOrderBetweenCashRegisters(ICredentials, IOrder) before any payment actions.
If you won't do this, PayOrderAndPayOutOnUser(ICredentials, IOrder, IPaymentType, Decimal) and PayOrder(ICredentials, IOrder) will throw exception.
|
See Also