Uses of Class
orderprocessing.BillingTerms

Uses of BillingTerms in orderprocessing
 

Methods in orderprocessing that return BillingTerms
 BillingTerms Order.billingTerms()
          Retrieve the billing terms for this order
 BillingTerms Customer.billingTerms()
          Retrieve this customer's default billing terms
static BillingTerms BillingTerms.get(java.lang.String code)
          Retrieve a terms object from its string representation "net 30", "net 10" and "eom 10" are recognized.
 

Methods in orderprocessing with parameters of type BillingTerms
 void Order.billingTerms(BillingTerms billingTerms)
          Assign new billing terms to this order
 void Customer.billingTerms(BillingTerms terms)
          Set new billing terms for this customer
 

Constructors in orderprocessing with parameters of type BillingTerms
Order(Customer customer, Address shipAddress, BillingTerms billingTerms, java.util.ArrayList orderedItems, CalculationCalendar orderDate, CalculationCalendar requestedShippingDate, CalculationCalendar cancelDate)
          Create an Order for a particular customer and a sequence of items ordered
Customer(java.lang.String name, Address billingAddress, Address shipAddress, BillingTerms billingTerms)
          create a customer object with all options specified.