Interface OrderGridFormFacade
-
- All Known Implementing Classes:
DefaultOrderGridFormFacade
public interface OrderGridFormFacadeInterface that can be used/implemented to populate readonly order grid for multi-d products.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,ReadOnlyOrderGridData>getReadOnlyOrderGrid(java.util.List<OrderEntryData> orderEntryDataList)Populates the readonly order gridjava.util.Map<java.lang.String,ReadOnlyOrderGridData>getReadOnlyOrderGridForProductInOrder(java.lang.String productCode, java.util.Collection<ProductOption> productOptions, AbstractOrderData abstractOrderData)Populates the read-only order grid for the specified multi-d product, the collection of product options, and if the product is contained in the entries of the specified AbstractOrder.
-
-
-
Method Detail
-
getReadOnlyOrderGrid
java.util.Map<java.lang.String,ReadOnlyOrderGridData> getReadOnlyOrderGrid(java.util.List<OrderEntryData> orderEntryDataList)
Populates the readonly order grid- Parameters:
orderEntryDataList-- Returns:
- map containing grouped ReadOnlyOrderGridDatas based on the category
-
getReadOnlyOrderGridForProductInOrder
java.util.Map<java.lang.String,ReadOnlyOrderGridData> getReadOnlyOrderGridForProductInOrder(java.lang.String productCode, java.util.Collection<ProductOption> productOptions, AbstractOrderData abstractOrderData)
Populates the read-only order grid for the specified multi-d product, the collection of product options, and if the product is contained in the entries of the specified AbstractOrder.- Parameters:
productCode-productOptions- a collection of ProductOption used to retrieve the product.abstractOrderData-- Returns:
- map containing grouped ReadOnlyOrderGridDatas based on the category
-
-