public interface Order extends ExternalEntity
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
COPYRIGHT
IBM copyright notice field.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCurrency()
This method returns the Currency selected by the customer for the Order.
|
java.lang.String[] |
getEnteredPromotionCodes()
This method returns all the promotion codes entered by the customer for the order.
|
OrderItem[] |
getItems()
This method returns the OrderItems of the Order.
|
OrderKey |
getKey()
This method returns the OrderKey of the Order.
|
java.util.Date |
getLastUpdate()
This method gets the date when the order was last updated.
|
CustomerKey |
getOwner()
This method returns the key of the customer who placed the order.
|
java.lang.Integer |
getStoreId()
This method returns the StoreId.
|
java.math.BigDecimal |
getTotal()
This method returns the total cost of the Order.
|
java.math.BigDecimal |
getTotalShippingCharge()
This method returns the total shipping charge of the order.
|
java.math.BigDecimal |
getTotalShippingTax()
This method returns the total shipping tax of the order.
|
java.math.BigDecimal |
getTotalTax()
This method returns the total tax to be paid for the Order.
|
static final java.lang.String COPYRIGHT
OrderKey getKey()
OrderKey
of the OrderOrderItem[] getItems()
OrderItem
java.util.Date getLastUpdate()
CustomerKey getOwner()
CustomerKey
java.lang.String getCurrency()
java.lang.Integer getStoreId()
java.math.BigDecimal getTotalShippingCharge()
java.math.BigDecimal getTotalShippingTax()
java.math.BigDecimal getTotal()
java.math.BigDecimal getTotalTax()
java.lang.String[] getEnteredPromotionCodes()