Package | Description |
---|---|
com.dpslink.flash.db |
DPS Flash specific definitions for database objects and database object controllers as well as other non-persisted business related objects.
|
com.dpslink.flash.db.util |
DPS Flash specific database related handlers and background processing tasks.
|
com.dpslink.flash.erp.extend |
DPS Flash specific DPS Extend implementations for
com.dpslink.flash.erp interfaces and abstract classes. |
com.dpslink.flash.servlet.admin |
DPS Flash specific servlets for handling administration functions.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.Class<PendingProduct> |
DBO.PNDPROD
The pending product object class.
|
Modifier and Type | Method and Description |
---|---|
PendingProduct |
PendingProductController.get(java.lang.String code,
java.lang.String uom)
Returns the pending product record for the given product code and unit of
measure code.
|
PendingProduct |
PendingProductController.valuesToObject(java.util.HashMap<java.lang.String,java.lang.Object> attrs)
Returns a database object from the given set of attributes.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<PendingProduct> |
PendingProductController.getBatch(ImportBatch batch)
Returns a collection of pending product records for the given batch.
|
java.util.ArrayList<PendingProduct> |
PendingProductController.getBatch(int batch)
Returns a collection of pending product records for the given batch number.
|
java.util.ArrayList<PendingProduct> |
PendingProductController.getBatchFind(ImportBatch batch,
int findkey)
Returns a collection of pending product records for the given batch and
find key.
|
java.util.ArrayList<PendingProduct> |
PendingProductController.getBatchFind(int batch,
int findkey)
Returns a collection of pending product records for the given batch number
and find key.
|
java.util.ArrayList<PendingProduct> |
PendingProductController.getBatchSelected(ImportBatch batch)
Returns a collection of selected pending product records for the given
batch.
|
java.util.ArrayList<PendingProduct> |
PendingProductController.getBatchSelected(int batch)
Returns a collection of selected pending product records for the given
batch number.
|
java.util.ArrayList<PendingProduct> |
PendingProductController.getBatchUnselected(ImportBatch batch)
Returns a collection of unselected pending product records for the given
batch.
|
java.util.ArrayList<PendingProduct> |
PendingProductController.getBatchUnselected(int batch)
Returns a collection of unselected pending product records for the given
batch number.
|
Modifier and Type | Method and Description |
---|---|
boolean |
PendingProductController.add(PendingProduct obj)
Adds a new record to the table associated with the controller.
|
boolean |
PendingProductController.delete(PendingProduct obj)
Deletes an existing record from the table associated with the controller.
|
boolean |
PendingProductController.delete(PendingProduct obj,
boolean deleteall)
Deletes a pending product record from the database, plus optionally
deletes any associated pending product information (cross references,
descriptions, images).
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
ImportProductTask.canPost(PendingProduct pending)
Answers if a pending product record can be posted by checking for any
severe errors.
|
boolean |
ImportProductTask.postRecord(PendingProduct pending,
boolean batchmode)
Handles processing for pending product record post requests.
|
boolean |
ImportProductTask.validateRecord(PendingProduct pending,
boolean post)
Handles processing for pending product record validation requests.
|
Modifier and Type | Field and Description |
---|---|
protected PendingProduct |
ProductInformation.ivPending
A WIP pending product object.
|
Modifier and Type | Method and Description |
---|---|
protected PendingProduct |
ProductInformation.parsePending(ERPInterfaceAS400.Received rec)
Parses pending product data from the receive data queue and returns a
pending product object.
|
Modifier and Type | Field and Description |
---|---|
protected PendingProduct |
AdmPendingProductProfile.Context.record
The current pending product object.
|
protected PendingProduct |
AdmPendingProductEditBasic.Context.record
The current pending product object.
|
protected PendingProduct |
AdmPendingProductEditImages.Context.record
The current pending product object.
|
protected PendingProduct |
AdmPendingProductEditDescriptions.Context.record
The current pending product object.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<PendingProduct> |
AdmPendingProductList.Context.selectList
The current list of selection objects.
|
protected java.util.ArrayList<PendingProduct> |
AdmProductImportCandidateList.Context.selectList
The current list of selection objects.
|