Uses of Class
org.broadleafcommerce.core.order.service.exception.RemoveFromCartException
Packages that use RemoveFromCartException
Package
Description
-
Uses of RemoveFromCartException in org.broadleafcommerce.core.order.service
Methods in org.broadleafcommerce.core.order.service that throw RemoveFromCartExceptionModifier and TypeMethodDescriptionOrderService.addAllItemsFromNamedOrder(Order namedOrder, boolean priceOrder) Adds all orderItems to the current cart from the same Customer that owns the named order.OrderServiceImpl.addAllItemsFromNamedOrder(Order namedOrder, boolean priceOrder) OrderService.addItemFromNamedOrder(Order namedOrder, OrderItem orderItem, boolean priceOrder) Adds the passed in orderItem to the current cart for the same Customer that owns the named order.OrderService.addItemFromNamedOrder(Order namedOrder, OrderItem orderItem, int quantity, boolean priceOrder) This method performs the same function as addItemFromNamedOrder(Order, OrderItem, boolean) except that instead of adding all of the quantity from the named order to the cart, it will only add/move the specific quantity requested.OrderServiceImpl.addItemFromNamedOrder(Order namedOrder, OrderItem item, boolean priceOrder) OrderServiceImpl.addItemFromNamedOrder(Order namedOrder, OrderItem item, int quantity, boolean priceOrder) Delegates to mergeCart(Customer, Order, boolean) with priceOrder set to trueMerges the anonymous cart with the customer's current cart, taking into consideration the active status of the SKUs to merge.MergeCartService.reconstructCart(Customer customer) Delegates to reconstructCart(Customer, boolean) with priceOrder set to trueMergeCartService.reconstructCart(Customer customer, boolean priceOrder) Reconstruct the cart using previous stored state taking into consideration sku activationMergeCartServiceImpl.reconstructCart(Customer customer) MergeCartServiceImpl.reconstructCart(Customer customer, boolean priceOrder) OrderService.removeInactiveItems(Long orderId, boolean priceOrder) OrderServiceImpl.removeInactiveItems(Long orderId, boolean priceOrder) OrderService.removeItem(Long orderId, Long orderItemId, boolean priceOrder) Initiates the removeItem workflow that will attempt to remove the specified OrderItem from the given OrderOrderServiceImpl.removeItem(Long orderId, Long orderItemId, boolean priceOrder) OrderService.updateItemQuantity(Long orderId, OrderItemRequestDTO orderItemRequestDTO, boolean priceOrder) Initiates the updateItem workflow that will attempt to update the item quantity for the specified OrderItem in the given Order.OrderServiceImpl.updateItemQuantity(Long orderId, OrderItemRequestDTO orderItemRequestDTO, boolean priceOrder) -
Uses of RemoveFromCartException in org.broadleafcommerce.core.pricing.service.workflow
Methods in org.broadleafcommerce.core.pricing.service.workflow that throw RemoveFromCartException