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.imports |
DPS Flash specific parsers and processors for importing data from delimited text files or from Excel spreadsheet files.
|
com.dpslink.flash.servlet |
DPS Flash specific servlets for handling shopping functions.
|
com.dpslink.flash.servlet.admin |
DPS Flash specific servlets for handling administration functions.
|
Modifier and Type | Field and Description |
---|---|
private static java.util.Hashtable<java.lang.String,UnitMeasure> |
UnitMeasureController.cvCache
The cache of all unit of measure objects per unit of measure code.
|
static java.lang.Class<UnitMeasure> |
DBO.UOM
The unit of measure object class.
|
Modifier and Type | Method and Description |
---|---|
UnitMeasure |
UnitMeasureController.get(java.lang.String code)
Returns the unit of measure record for the given unit of measure code.
|
UnitMeasure |
UnitMeasureController.getISO(java.lang.String code)
Returns the unit of measure record for the given ISO code.
|
UnitMeasure |
CartLine.getOrderUom()
Returns the order unit of measure object.
|
UnitMeasure |
CartConfirmationLine.getOrderUom()
Returns the order unit of measure object.
|
UnitMeasure |
CartLine.getPriceUom()
Returns the price unit of measure object.
|
UnitMeasure |
CartConfirmationLine.getPriceUom()
Returns the price unit of measure object.
|
UnitMeasure |
Product.getUom()
Returns the unit of measure object.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<UnitMeasure> |
UnitMeasureController.getAll()
Returns a collection of all records in the table associated with the
controller.
|
Modifier and Type | Method and Description |
---|---|
int |
UnitMeasureController.add(UnitMeasure obj,
boolean logdup)
Adds a new record to the table associated with the controller.
|
boolean |
Cart.addCartLine(FlashServletContext ctx,
Product product,
int quantity,
UnitMeasure orderuom,
UnitMeasure priceuom)
Adds a new cart line to this cart's collection of cart lines and to the
cart line database table.
|
boolean |
UnitMeasureController.delete(UnitMeasure obj)
Deletes an existing record from the table associated with the controller.
|
void |
CartLine.setOrderUom(UnitMeasure value)
Sets the order unit of measure object.
|
void |
CartConfirmationLine.setOrderUom(UnitMeasure value)
Sets the order unit of measure object.
|
void |
CartLine.setPriceUom(UnitMeasure value)
Sets the price unit of measure object.
|
void |
CartConfirmationLine.setPriceUom(UnitMeasure value)
Sets the price unit of measure object.
|
void |
Product.setUom(UnitMeasure value)
Sets the unit of measure object.
|
boolean |
UnitMeasureController.update(UnitMeasure obj)
Updates an existing record in the table associated with the controller.
|
boolean |
Cart.updateCartLine(FlashServletContext ctx,
int index,
int quantity,
UnitMeasure orderuom,
UnitMeasure priceuom)
Updates the values for a cart line in the collection of cart lines and
in the cart line database table.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Cart.addCartLines(FlashServletContext ctx,
java.util.ArrayList<Product> products,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Adds one or more new cart lines to this cart's collection of cart lines
and to the cart line database table.
|
boolean |
Cart.addCartLines(FlashServletContext ctx,
java.util.ArrayList<Product> products,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Adds one or more new cart lines to this cart's collection of cart lines
and to the cart line database table.
|
boolean |
Cart.updateCartLines(FlashServletContext ctx,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Updates the values for one or more cart lines in the collection of cart
lines and in the cart line database table.
|
boolean |
Cart.updateCartLines(FlashServletContext ctx,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Updates the values for one or more cart lines in the collection of cart
lines and in the cart line database table.
|
Modifier and Type | Method and Description |
---|---|
protected UnitMeasure |
UnitMeasureHandler.getDefaultOrderUom(Product product)
Returns the default order unit of measure for the given product.
|
protected UnitMeasure |
UnitMeasureHandler.getDefaultPriceUom(Product product)
Returns the default price unit of measure for the given product based on
the product's quantity price break data from the ERP system.
|
Modifier and Type | Field and Description |
---|---|
private UnitMeasure |
ProductImport.ivUnitMeasure
A unit of measure object.
|
Modifier and Type | Field and Description |
---|---|
private java.util.ArrayList<UnitMeasure> |
ProductImport.ivUnitMeasures
A cache of all units of measure.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
ReviewCart.getAdds(ReviewCart.Context ctx,
java.util.ArrayList<Product> products,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Retrieves the "Add To" submitted values and places the values into the
given collections.
|
protected boolean |
ReviewCart.getAdds(ReviewCart.Context ctx,
java.util.ArrayList<Product> products,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Retrieves the "Add To" submitted values and places the values into the
given collections.
|
protected boolean |
ReviewCart.getUpdates(ReviewCart.Context ctx,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Retrieves the submitted "Update" values and places the values into the
given collections.
|
protected boolean |
ReviewCart.getUpdates(ReviewCart.Context ctx,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Retrieves the submitted "Update" values and places the values into the
given collections.
|
protected boolean |
ProductDetails.processCart(ProductDetails.Context ctx,
java.util.ArrayList<Product> products,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Performs the requested cart or favorites processing.
|
protected boolean |
ProductDetails.processCart(ProductDetails.Context ctx,
java.util.ArrayList<Product> products,
java.util.ArrayList<java.lang.Integer> quantities,
java.util.ArrayList<UnitMeasure> orderuoms,
java.util.ArrayList<UnitMeasure> priceuoms)
Performs the requested cart or favorites processing.
|
Modifier and Type | Field and Description |
---|---|
protected UnitMeasure |
AdmUnitMeasureAddEdit.Context.dbObject
The current object being added or edited.
|
protected UnitMeasure |
AdmUnitMeasureSelect.Context.selectObj
The current selected object.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<UnitMeasure> |
AdmUnitMeasureAddEdit.Context.selectList
The select servlet's current list of selection objects.
|
protected java.util.ArrayList<UnitMeasure> |
AdmUnitMeasureSelect.Context.selectList
The current list of selection objects.
|