Click or drag to resize

DeliveryBillPrintTimeOption Enumeration

Delivery bill may be printed either automatically or manually. This option specifies how and when to print delivery bill.

Namespace:  Resto.Front.Api.Data.Brd
Assembly:  Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntax
C#
public enum DeliveryBillPrintTimeOption
Members
  Member nameValueDescription
Manually0 Delivery bill may be printed manually at user's or plugin's discretion. Use PrintDeliveryBill(IDeliveryOrder, ICredentials) method to print delivery bill. If delivery bill hasn't been printed manually before sending the delivery, it will be printed automatically on send.
AutomaticallyOnCookingStarted1 Delivery bill will be printed automatically on cooking start. Cooking may start automatically or manually (use PrintOrderItems(IOrder, IReadOnlyListIOrderCookingItem, ICredentials) method to manually start cooking).
AutomaticallyOnCookingCompleted2 Delivery bill will be printed automatically on cooking complete.
AutomaticallyOnSending3 Delivery bill will be printed automatically on sending delivery.
AutomaticallyOnPayment4 Delivery bill will be printed automatically on payment.
See Also