public interface IOrderSummary extends ERPInterface
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
SELECT_ALL |
static java.lang.String |
SELECT_FOR_CONSOLIDATION |
static java.lang.String |
SELECT_OPEN |
ERROR_CONNECT, ERROR_NONE, ERROR_PROGRAM, WARN_DUPLICATE, WARN_NONE
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Order> |
getOrderSummaryList(java.lang.String orderSelFlag,
int daysOfHistory,
java.util.Date fromDate,
java.util.Date toDate,
java.lang.String productCode,
java.lang.String customerPO,
java.util.Date reqShipDate)
Returns a list of order summary information for the current shopping user.
|
getContext, getErrorType, getWarningType, setContext, setErrorType, setWarningType
static final java.lang.String SELECT_OPEN
static final java.lang.String SELECT_ALL
static final java.lang.String SELECT_FOR_CONSOLIDATION
java.util.ArrayList<Order> getOrderSummaryList(java.lang.String orderSelFlag, int daysOfHistory, java.util.Date fromDate, java.util.Date toDate, java.lang.String productCode, java.lang.String customerPO, java.util.Date reqShipDate)
orderSelFlag
- (String) Flag that designates how to select
orders (use constants, SELECT_OPEN, SELECT_ALL,
SELECT_FOR_CONSOLIDATION)daysOfHistory
- (int) Limits the orders retrieved to this many
days in the past.fromDate
- (Date) Selects only orders with order date greater than
or equal to this value. Requires toDate to be given and superceeds
daysOfHistory, if not null.toDate
- (Date) Selects only orders with order date greater than or
equal to this value. Requires from date to be given as well.productCode
- (String) Limits the orders retrieved to ones that
include this product code.customerPO
- (String) Limits the orders retrieved to ones that
include this PO number.reqShipDate
- (Date) Requested ship date of the current order.
Only used for order consolidation selection scenarios.