根据自定义价格以编程方式将商品添加到购物车:Magento 2

时间:2017-11-23 05:28:29

标签: magento2 cart quote

我有一个使用Magento报价模块创建报价的模块。

现在我想继续结帐,应该将报价项目添加到购物车,结账页面应该显示给报价中包含这些项目的用户。

我在这里创建引号:

$quote = $this->quoteFactory->create()->load($quoteId);

报价创造正常,我将报价中的项目作为:

$items = $quote->getAllItems();

我将产品添加到购物车中,如下所示

$items = $quote->getAllItems();

foreach ($items as $item) {
    $formatedPrice = $item->getPrice();
    $quantity = $item['qty'];
    $productId = $item->getProductId();

    $params = array(
          'form_key' => $this->formKey->getFormKey(),
          'product' => $productId, //product Id
          'qty' => $quantity, //quantity of product
          'price' => $formatedPrice //product price
    );

    $_product = $this->_productRepository->getById($productId);

    if ($_product) {
        $this->cart->addProduct($_product, $params);
    }
}
try {
    $this->cart->save();
    $this->messageManager->addSuccess(__('Added to cart successfully.'));
} catch (\Magento\Framework\Exception\LocalizedException $e) {
    $this->messageManager->addException($e, __('%1', $e->getMessage()));
}

这里的问题是物品被添加到购物车中但是如果有产品具有定制价格,我需要将这些产品添加到购物车,其价格与为产品配置的产品不同。目录。

自定义价格定义在

$formatedPrice = $item->getPrice();

此外,我遇到一个问题,无论何时我创建新报价并将之前的报价添加到购物车,它都会显示已创建的最新报价的项目。 当引用ID在这里正确时,怎么会发生这种情况。

我实际上想在Magento 2中做这样的事情: Programmatically add product to cart with price change

拜托,有谁可以帮忙解决这个问题?

2 个答案:

答案 0 :(得分:1)

这在Magento 2.2.8中对我有用:

在控制器中:

        $price = rand(0,1000);

        $this->product->setData('custom_overwrite_price', $price);

        $params = [
            'form_key' => $this->formKey->getFormKey(),
            'qty' => 1,
            'options' => ...
        ];

        $this->cart->addProduct($this->product, $params);
        $this->cart->save();

在checkout_cart_product_add_after

public function execute(\Magento\Framework\Event\Observer $observer) {
    $item = $observer->getEvent()->getData('quote_item');
    $item = ( $item->getParentItem() ? $item->getParentItem() : $item );

    $price = $item->getProduct()->getData(AddController::PRODUCT_OVERWRITE_PRICE);

    $item->setCustomPrice($price);
    $item->setOriginalCustomPrice($price);
    $item->getProduct()->setIsSuperMode(true);
}

答案 1 :(得分:0)

有效的解决方案,想想起来真的很简单:

$params = array(
  'form_key' => $this->_formKey->getFormKey(),
  'product' => $productId,
  'qty'   => $qty
);

$product = $this->_product->load($productId); 
$product->setPrice($customPrice); // without save this does the trick
$this->cart->addProduct($product, $params);
$this->cart->save();

缺少的部分可以随意填充。