Hi
Before a user is registered or signed-in I use
getTempCustomerId()
in order to attach a shooping cart, e.g.
Session ID: be9a3bceb5837622d4d6cc44a079ae3c (based on a temporary user created within forceRegisterCustomer)
Customer ID: -107
but at some point the customer will register or sign-in:
String konakartSessionID = kkEngine.login(username, password);
but here it is not clear to me how to transfer the filled shopping cart to the signed-in user, because
first the above method does not seem to have any connection to the previous session, but rather creates a new session (btw. in my case the login() method returns an empty string) and second I have used the negative customer ID to add items to the shopping cart.
Any pointers are much appreciated.
Thanks
Michael