我有一个使用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

请,有人可以帮忙解决这个问题吗?

最佳答案

这在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('custom_overwrite_price');

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

10-05 20:04