Uses of Class
org.salespointframework.order.Order
Packages that use Order
Package
Description
Accountancy subsystem with services for accounting and bookkeeping.
The order subsystem.
-
Uses of Order in org.salespointframework.accountancy
Methods in org.salespointframework.accountancy with parameters of type OrderModifier and TypeMethodDescriptionboolean
Returns whether theOrderPaymentEntry
belongs to the givenOrder
.static OrderPaymentEntry
Creates a newOrderPaymentEntry
for the givenOrder
and description.static OrderPaymentEntry
Creates a newOrderPaymentEntry
that rolls back the payment for the givenOrder
. -
Uses of Order in org.salespointframework.order
Classes in org.salespointframework.order with type parameters of type OrderModifier and TypeInterfaceDescriptioninterface
OrderManagement<T extends Order>
A service to manageOrder
s.Methods in org.salespointframework.order that return OrderModifier and TypeMethodDescriptionCart.addItemsTo
(Order order) Adds all items currently contained in this cart to the givenOrder
.Cart.createOrderFor
(UserAccount user) Deprecated, for removal: This API element is subject to removal in a future version.Cart.createOrderFor
(UserAccount.UserAccountIdentifier identifier) Creates a new Order for the givenUserAccount.UserAccountIdentifier
from the currentCart
.OrderCompletionFailure.getOrder()
@NonNull Order
OrderCompletionReport.getOrder()
OrderEvents.OrderCanceled.getOrder()
OrderEvents.OrderCompleted.getOrder()
OrderEvents.OrderPaid.getOrder()
Methods in org.salespointframework.order with parameters of type OrderModifier and TypeMethodDescriptionCart.addItemsTo
(Order order) Adds all items currently contained in this cart to the givenOrder
.static OrderCompletionReport
Creates anOrderCompletionReport
for anOrder
that's marked as failed.static OrderCompletionReport
OrderCompletionReport.forCompletions
(Order order, Iterable<OrderCompletionReport.OrderLineCompletion> completions) Creates a newOrderCompletionReport
for the givenOrder
andOrderCompletionReport.OrderLineCompletion
s.static OrderEvents.OrderCanceled
static OrderEvents.OrderCompleted
static OrderEvents.OrderPaid
static OrderCompletionReport
Creates anOrderCompletionReport
representing a successful verification of the givenOrder
.Constructors in org.salespointframework.order with parameters of type OrderModifierConstructorDescriptionOrderCompletionFailure
(Order order, String message) Creates a newOrderCompletionFailure
for the givenOrder
and message.
Cart.createOrderFor(UserAccountIdentifier)
instead.