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