Package | Description |
---|---|
com.dpslink.flash.erp |
DPS Flash specific interfaces and abstract classes on which all backend interface classes are based.
|
com.dpslink.flash.erp.extend |
DPS Flash specific DPS Extend implementations for
com.dpslink.flash.erp interfaces and abstract classes. |
com.dpslink.flash.erp.obj |
DPS Flash specific business related objects unique to backend interface processing.
|
com.dpslink.flash.servlet |
DPS Flash specific servlets for handling shopping functions.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.Class<OrderDetail> |
ERP.oORDDTL
The ERP object type for order detail.
|
Modifier and Type | Method and Description |
---|---|
protected OrderDetail |
OrderInformation.parseOrderDetail(ERPInterfaceAS400.Received rec)
Parses order detail data from the receive data queue and returns an
order detail object.
|
protected OrderDetail |
OrderInformation.parseShipDetail(ERPInterfaceAS400.Received rec)
Parses shipment detail data from the receive data queue and returns a
shipment detail object (as an order detail object).
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<OrderDetail> |
Order.getOrderDetails()
Returns the collection of order line items.
|
java.util.ArrayList<OrderDetail> |
ShipSummary.getShipDetails()
Returns collection of shipping details.
|
Modifier and Type | Method and Description |
---|---|
void |
Order.addOrderDetail(OrderDetail line)
Adds an order line item to the collection of order details.
|
void |
ShipSummary.addShipDetail(OrderDetail detail)
Adds a shipping detail to the collection of shipment details.
|
Modifier and Type | Method and Description |
---|---|
private boolean |
OrderToExcel.doSingleOrderDetail(OrderToExcel.Context ctx,
Order order,
java.util.ArrayList<OrderDetail> lineitems)
Handles Excel spreadsheet creation for a single order's detail.
|