Method and Description |
---|
org.salespointframework.order.Order.add(ChargeLine)
since 7.1, use
Order.addChargeLine(MonetaryAmount, String) instead |
org.salespointframework.order.Order.add(OrderLine)
since 7.1, use
Order.addOrderLine(Product, Quantity) instead. |
org.salespointframework.order.Order.getChargeLinesPrice()
since 7.1, prefer
Order.getChargeLines() , Order.getAllChargeLines() and call
PricedTotalable#getTotal() on the result for fine grained control over which
ChargeLine s to calculate the total for. |
org.salespointframework.order.Order.getOrderedLinesPrice()
since 7.1, use
Order.getOrderLines() and call Totalable.getTotal() on the result. |
org.salespointframework.order.Order.getTotalPrice()
since 7.1, use
Order.getTotal() instead. |
Copyright © 2019. All rights reserved.