Uses of Class
org.cocome.tradingsystem.inventory.application.store.ComplexOrderTO

Packages that use ComplexOrderTO
org.cocome.tradingsystem.inventory.application.store   
org.cocome.tradingsystem.inventory.application.store.impl   
org.cocome.tradingsystem.inventory.gui.store   
 

Uses of ComplexOrderTO in org.cocome.tradingsystem.inventory.application.store
 

Methods in org.cocome.tradingsystem.inventory.application.store that return ComplexOrderTO
 ComplexOrderTO StoreIf.getOrder(long orderId)
          Returns order information for a given order id.
 

Methods in org.cocome.tradingsystem.inventory.application.store that return types with arguments of type ComplexOrderTO
 java.util.List<ComplexOrderTO> StoreIf.orderProducts(ComplexOrderTO complexOrder)
          Creates a list of orders for different suppliers for an initial list of products to be ordered by a store.
 

Methods in org.cocome.tradingsystem.inventory.application.store with parameters of type ComplexOrderTO
 java.util.List<ComplexOrderTO> StoreIf.orderProducts(ComplexOrderTO complexOrder)
          Creates a list of orders for different suppliers for an initial list of products to be ordered by a store.
 void StoreIf.rollInReceivedOrder(ComplexOrderTO complexOrderTO)
          Updates stocks after order delivery.
 

Uses of ComplexOrderTO in org.cocome.tradingsystem.inventory.application.store.impl
 

Methods in org.cocome.tradingsystem.inventory.application.store.impl that return ComplexOrderTO
static ComplexOrderTO FillTransferObjects.fillComplexOrderTO(ProductOrder order)
           
 ComplexOrderTO StoreImpl.getOrder(long orderId)
           
 

Methods in org.cocome.tradingsystem.inventory.application.store.impl that return types with arguments of type ComplexOrderTO
 java.util.List<ComplexOrderTO> StoreImpl.orderProducts(ComplexOrderTO complexOrder)
           
 

Methods in org.cocome.tradingsystem.inventory.application.store.impl with parameters of type ComplexOrderTO
 java.util.List<ComplexOrderTO> StoreImpl.orderProducts(ComplexOrderTO complexOrder)
           
 void StoreImpl.rollInReceivedOrder(ComplexOrderTO complexOrderTO)
           
 

Uses of ComplexOrderTO in org.cocome.tradingsystem.inventory.gui.store
 

Methods in org.cocome.tradingsystem.inventory.gui.store that return types with arguments of type ComplexOrderTO
 java.util.List<ComplexOrderTO> ProductSupplierOrderTableModel.order()
           
 

Constructor parameters in org.cocome.tradingsystem.inventory.gui.store with type arguments of type ComplexOrderTO
ProductOrderDisplay(java.util.List<ComplexOrderTO> orders)