Uses of Class
com.sgs.common.database.OrderInformation
-
Packages that use OrderInformation Package Description com.sgapi.services This package provides endpoints for integrating data with the SG V5 System Imports are handled within the IntegrationImport class Exports are handled within the IntegrationExport classcom.sgs.common.database This package is responsible for holding all of the objects that can be persisted in the SG V5 System. -
-
Uses of OrderInformation in com.sgapi.services
Method parameters in com.sgapi.services with type arguments of type OrderInformation Modifier and Type Method Description javax.ws.rs.core.Response
IntegrationImport. setOrderInformation(java.util.List<OrderInformation> orderInformations)
Imports order information for use in purchase orders and sales orders. -
Uses of OrderInformation in com.sgs.common.database
Fields in com.sgs.common.database declared as OrderInformation Modifier and Type Field Description OrderInformation
SalesOrder. broker
The broker for the sales orderOrderInformation
SalesOrder. carrier
The carrier for the sales orderOrderInformation
Transfer. carrier
The carrier for the goodsOrderInformation
Client. defaultBroker
Default broker order information linkOrderInformation
Client. defaultCarrier
Default carrier order information linkOrderInformation
Client. defaultPaymentTerms
Default payment terms order information linkOrderInformation
Client. defaultShippingTerms
Default shipping terms order information linkOrderInformation
PurchaseOrder. paymentTerms
Payment TermsOrderInformation
PurchaseOrder. shippingTerms
Shipping TermsMethods in com.sgs.common.database that return OrderInformation Modifier and Type Method Description OrderInformation
SalesOrder. getBroker()
OrderInformation
SalesOrder. getCarrier()
OrderInformation
Transfer. getCarrier()
OrderInformation
Client. getDefaultBroker()
OrderInformation
Client. getDefaultCarrier()
OrderInformation
Client. getDefaultPaymentTerms()
OrderInformation
Client. getDefaultShippingTerms()
OrderInformation
PurchaseOrder. getPaymentTerms()
OrderInformation
PurchaseOrder. getShippingTerms()
Methods in com.sgs.common.database with parameters of type OrderInformation Modifier and Type Method Description void
SalesOrder. setBroker(OrderInformation broker)
void
SalesOrder. setCarrier(OrderInformation carrier)
void
Transfer. setCarrier(OrderInformation carrier)
void
Client. setDefaultBroker(OrderInformation defaultBroker)
void
Client. setDefaultCarrier(OrderInformation defaultCarrier)
void
Client. setDefaultPaymentTerms(OrderInformation defaultPaymentTerms)
void
Client. setDefaultShippingTerms(OrderInformation defaultShippingTerms)
void
PurchaseOrder. setPaymentTerms(OrderInformation paymentTerms)
void
PurchaseOrder. setShippingTerms(OrderInformation shippingTerms)
-