Magento |在报价循环中更新商品价格

问题描述 投票:0回答:1

我需要对订单中的每种产品进行一些自定义定价,这会改变该商品的最终价格。

我正在使用具有

sales_quote_item_qty_set_after
事件的观察者来确保每次重新配置产品时都会运行价格,因为我无法从其他事件中获得所需的结果。

我遇到的问题是使用

->getAllItems()
循环报价时无法更改报价中产品的价格。

我知道可以通过以下产品添加事件覆盖价格。

$_item = $obs->getQuoteItem();
$_item = ( $_item->getParentItem() ? $_item->getParentItem() : $_item );
$new_price = 1000;
$_item->setCustomPrice($new_price);
$_item->setOriginalCustomPrice($new_price);
$_item->getProduct()->setIsSuperMode(true);

但是,在浏览购物车中的报价项目时,我找不到办法做到这一点。这是否可能,或者定价是否必须在不同的观察者中完成,如果可以,是哪一个?

完整代码如下...

public function adminAddProduct(Varien_Event_Observer $obs) {
    $quote = $this->_getSession()->getQuote();
    foreach($quote->getAllItems() as $_item){
        $options = $_item->getProduct()->getTypeInstance(true)->getOrderOptions($_item->getProduct());
        $_product = $_item->getProduct();
        $sku = $options['simple_sku'];
        if ($sku) {
            $tierPrices = $_product->getTierPrice();
            $price = $_item->getPrice();
            $qty = $options['info_buyRequest']['qty'];

            $product = Mage::getModel('catalog/product')->loadByAttribute('sku',$sku);
            $runspeed = $product->getResource()->getAttribute('runspeed')->getFrontend()->getValue($product);

            $prodOpts = [];
            foreach($options['options'] as $option) {
                $prodOpts[$option['label']] = $option['value'];
            }

            $index = 0;
            foreach($tierPrices as $tierPrice) {
                if($tierPrice['price_qty'] <= $qty && $tierPrices[$index + 1]['price_qty'] > $qty) {
                    $price = $tierPrice['price'];
                }
                //$prodTiers[$tierPrice['price_qty']] = $tierPrice['price'];
            }

            if($prodOpts['Quantity'] == 'Fixed Quantity' && array_key_exists('Quantity Select', $prodOpts)){
                $qty = str_replace(',', '', explode(" ", $prodOpts['Quantity Select'])[0]);
            } else {
                $qty = 1;
            }

            $_item->setQty($qty);
            $_item->setCustomPrice($customPrice)->setOriginalCustomPrice($customPrice);

            $new_price = 999;

            $_item->setPrice($new_price);
            $_item->setCustomPrice($new_price);
            $_item->setOriginalCustomPrice($new_price);
            $_item->save();

            Mage::log($price);
            Mage::log($prodOpts);
        }
    }
}

如有任何帮助,我们将不胜感激。

php magento observers
1个回答
1
投票

您可以在函数结束时尝试

$quote->save()

© www.soinside.com 2019 - 2024. All rights reserved.