-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Same product quantity not increment when added with guest user. #21375 #21501
Same product quantity not increment when added with guest user. #21375 #21501
Conversation
…to#21375 - removed non required item options while comparing with merge items
Hi @Jitheesh. Thank you for your contribution
For more details, please, review the Magento Contributor Assistant documentation |
Hi @swnsma, thank you for the review. |
Hi @Jitheesh, thank you for your contribution! |
Description (*)
This issue is because of additional buy request parameters while we adding product from product view page.
After customer login Magento will load customer quote and merge this into current quote, while merging quotes, it will compare quote items.
quoteOptionFromViewPage
array ( 'info_buyRequest' => array ( 'product' => '1', 'item' => '1', ), )
quoteOptionFromListingPage
array ( 'info_buyRequest' => array ( 'product' => '1', ), )
Item comparison failed because of 'item' parameter in the buy request. Same issue will happen if we add related products along with main products.
Fixed Issues (if relevant)
Manual testing scenarios (*)
Contribution checklist (*)