Uses of Class
org.salespointframework.order.OrderLine
| Package | Description |
|---|---|
| org.salespointframework.inventory |
The inventory subsystem.
|
| org.salespointframework.order |
The order subsystem.
|
-
Uses of OrderLine in org.salespointframework.inventory
Methods in org.salespointframework.inventory with parameters of type OrderLine Modifier and Type Method Description static booleanLineItemFilter. shouldBeHandled(OrderLine orderLine, Collection<LineItemFilter> filters)Returns whether the givenOrderLineshould be handled considering the givenLineItemFilters. -
Uses of OrderLine in org.salespointframework.order
Methods in org.salespointframework.order that return OrderLine Modifier and Type Method Description OrderLineOrder. addOrderLine(Product product, Quantity quantity)OrderLineChargeLine.AttachedChargeLine. getOrderLine()@NonNull OrderLineOrderCompletionReport.OrderLineCompletion. getOrderLine()Methods in org.salespointframework.order that return types with arguments of type OrderLine Modifier and Type Method Description Totalable<OrderLine>Order. getOrderLines()Totalable<OrderLine>Order. getOrderLines(Product product)Methods in org.salespointframework.order with parameters of type OrderLine Modifier and Type Method Description ChargeLine.AttachedChargeLineOrder. addChargeLine(javax.money.MonetaryAmount price, String description, OrderLine orderLine)Adds anChargeLine.AttachedChargeLinewith the given price and description to the givenOrderLine.booleanChargeLine.AttachedChargeLine. belongsTo(OrderLine oderLine)Returns whether theChargeLine.AttachedChargeLinebelongs to the givenOrderLine.static OrderCompletionReport.OrderLineCompletionOrderCompletionReport.OrderLineCompletion. error(OrderLine orderLine, String message)Creates anOrderCompletionReport.OrderLineCompletionrepresenting an erroneousOrderLinealongside an error message.Totalable<ChargeLine.AttachedChargeLine>Order. getChargeLines(OrderLine orderLine)Returns allChargeLine.AttachedChargeLines for the givenOrderLine.voidOrder. remove(OrderLine orderLine)Removes the givenOrderLineas well as allChargeLine.AttachedChargeLineassociated with it.voidOrder. removeChargeLinesFor(OrderLine orderLine)Removes allChargeLine.AttachedChargeLines attached to the givenOrderLine.static OrderCompletionReport.OrderLineCompletionOrderCompletionReport.OrderLineCompletion. skipped(OrderLine ordeLine)static OrderCompletionReport.OrderLineCompletionOrderCompletionReport.OrderLineCompletion. success(OrderLine orderLine)Creates anOrderCompletionReport.OrderLineCompletionrepresenting the successful completion of anOrderLine.Method parameters in org.salespointframework.order with type arguments of type OrderLine Modifier and Type Method Description OrderCompletionReport.OrderLineCompletionOrderCompletionReport.OrderLineCompletion. onSuccess(Consumer<OrderLine> action)Applies the givenConsumerin case theOrderCompletionReport.OrderLineCompletionis successful.