Uses of Class
org.salespointframework.order.Order
Package
Description
Accountancy subsystem with services for accounting and bookkeeping.
The order subsystem.
-
Uses of Order in org.salespointframework.accountancy
Modifier 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
Modifier and TypeInterfaceDescriptioninterface
OrderManagement<T extends Order>
A service to manageOrder
s.Modifier 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()
Modifier 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
.ModifierConstructorDescriptionOrderCompletionFailure
(Order order, String message) Creates a newOrderCompletionFailure
for the givenOrder
and message.
Cart.createOrderFor(UserAccountIdentifier)
instead.