Considera che ci sono due prodotti, vale a dire: Prodotto A e Prodotto B. Il prodotto B è un prodotto viruale che devo aggiungere al carrello quando viene aggiunto il prodotto A.
Per fare ciò, sto cercando di aggiungere il prodotto B al carrello osservando un evento checkout_cart_product_add_after
. Una volta aggiunto il prodotto A, sto recuperando la quantità di prodotto aggiunto per il prodotto A e sulla base di esso sto provando ad aggiungere il prodotto B a livello di codice. Per aggiungere il prodotto B, ho scritto sotto il codice:
<?php
namespace MyModule\Applicationcharges\Observer;
use Magento\Framework\Event\ObserverInterface;
use Magento\Framework\App\RequestInterface;
class AddCharges implements ObserverInterface
{
protected $_productRepository;
protected $_cart;
public function __construct(\Magento\Catalog\Model\ProductRepository $productRepository, \Magento\Checkout\Model\Cart $cart){
$this->_productRepository = $productRepository;
$this->_cart = $cart;
}
public function execute(\Magento\Framework\Event\Observer $observer)
{
$item=$observer->getEvent()->getData('quote_item');
$product=$observer->getEvent()->getData('product');
$item = ( $item->getParentItem() ? $item->getParentItem() : $item );
$product->getQty();
$params = array(
'product' => 2056,
'qty' => 1
);
$_product = $this->_productRepository->getById(2056);
$this->_cart->addProduct($_product,$params);
$this->_cart->save();
}
}
Tuttavia, provare ad aggiungere un prodotto usando $this->_cart->addProduct()
non funziona. Qualcuno può guidare come può essere fatto? C'è qualcosa che mi manca.
Qualsiasi consiglio sarà apprezzato.