View Javadoc
1   package com.srv4pos.server.api.sale;
2   
3   /**
4    * The means by which means the receipt is delivered to the customer.
5    * <p>User: Pavel Abizyaev, Date: 04.09.2014 18:30</p>
6    */
7   public enum DeliveryType {
8       /**
9        * Print is displayed, but not yet printed.
10       */
11      Display,
12      Print,
13      SMS,
14      Email,
15      Discard,
16      Journal;
17  }