How to get current Cart_id/quote_id in plugin file Magento 2?
namespace AsmSetselleridPlugin; use MagentoQuoteModelCartTotalsItemConverter; use MagentoQuoteApiDataTotalsItemExtensionFactory; class Item { /** * @var TotalsItemExtensionFactory */ protected $totalsItemExtensionFactory; /** * ItemConverterPlugin constructor. * * @param TotalsItemExtensionFactory $totalsItemExtensionFactory */ public function __construct( MagentoCheckoutModelCart $cart, TotalsItemExtensionFactory $totalsItemExtensionFactory ) { $this->totalsItemExtensionFactory = $totalsItemExtensionFactory; $this->cart =… Read More »How to get current Cart_id/quote_id in plugin file Magento 2?