Magento – Multiple Cart or Split Quote in Magento2

cartmagento-2.1magento2quote

I want to show two cart for normal products and vendor products.

I don't think it possible to create multiple cart either by splitting quote or creating multiple quote.

Because Magento 2 separate module for Quote. Can anyone tell me how can i achieve my requirement?

thanks

Best Answer

By default, Magento doesn't have UI for multiple quotes. Also, Magento relies on is_active quote field in order to bind the consumer to exactly one quote. However, you can use \Magento\Quote\Api\CartRepositoryInterface to introduce more active quotes per consumer. You also need to create custom UI for your custom quotes.

Related Topic