SaravanaN
SaravanaN

Reputation: 11

Hybris, how to load the cart using cartId

I have a requirement, where the customer can share the cart via email, in Hybris how to load the cart using cartId?

Upvotes: 1

Views: 1087

Answers (1)

Johannes von Zmuda
Johannes von Zmuda

Reputation: 1822

Try one of these:

de.hybris.platform.commerceservices.order.CommerceCartService

  • CartModel getCartForGuidAndSiteAndUser(String guid, BaseSiteModel site, UserModel user)
  • CartModel getCartForGuidAndSite(String guid, BaseSiteModel site)
  • CartModel getCartForCodeAndUser(String code, UserModel user)

Upvotes: 1

Related Questions