Magento自定义价格价值不会通过更改货币转换



以下代码用于为简单产品设置自定义价格。根据需要在购物车中设置自定义价格,但是当我切换货币时,自定义价格值与当前货币符号保持不变。

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

是否有任何方法可以设置与货币切换一起使用的自定义价格。

我找到了一个解决方案。

第一步:

使用@Ashish raj建议的以下代码添加以自定义价格添加项目

$baseCurrencyCode = Mage::app()->getStore()->getBaseCurrencyCode(); 
$currentCurrencyCode = Mage::app()->getStore()->getCurrentCurrencyCode();
$price = $customPrice;
$customPrice = $Current_currency_price = Mage::helper('directory')->currencyConvert($price, $baseCurrencyCode, $currentCurrencyCode);
$item->setCustomPrice($customPrice);
$item->setOriginalCustomPrice($customPrice);
$item->getProduct()->setIsSuperMode(true);

第二步:

第二步是通过在模块的config.xml文件中添加以下代码来创建一个控制器帖子观察者

<events>
        <controller_action_postdispatch>
            <observers>
                <frontend_currency_change>
                    <class>modulename/observer</class>
                    <method>hookToControllerActionPostDispatch</method>
                </frontend_currency_change>
            </observers>
        </controller_action_postdispatch>
    </events>

并将以下代码添加到观察者类

    public function hookToControllerActionPostDispatch($observer) {
            if ($observer->getEvent()->getControllerAction()->getFullActionName() == 'directory_currency_switch') {
                $quote = Mage::getSingleton('checkout/session')->getQuote();
                if ($quote && $quote->hasItems()) {
                    foreach ($quote->getAllVisibleItems() as $item):
                        //add condition for target item
                        $customPrice = 23;//use custom price logic
                        $baseCurrencyCode = Mage::app()->getStore()->getBaseCurrencyCode();
                        $currentCurrencyCode = Mage::app()->getStore()->getCurrentCurrencyCode();
                        $customPrice = Mage::helper('directory')->currencyConvert($customPrice, $baseCurrencyCode, $currentCurrencyCode);
                        $item->setCustomPrice($customPrice);
                        $item->setOriginalCustomPrice($customPrice);
                        $item->getProduct()->setIsSuperMode(true);
                        $quote->collectTotals()->save();
                    endforeach;
                }
            }
        }

这对我有用。希望这将有助于有同样问题的人。如果有人有更好的解决方案,我会更喜欢。谢谢。

使用以下代码希望它能帮助您...

第一步:

//you need to find base currency code and then find current currency code...
$baseCurrencyCode = Mage::app()->getStore()->getBaseCurrencyCode(); 
$currentCurrencyCode = Mage::app()->getStore()->getCurrentCurrencyCode();
$price = $customPrice;

第二步:

//convert price from base currency to current currency
$customPrice = $Current_currency_price = Mage::helper('directory')->currencyConvert($price, $baseCurrencyCode, $currentCurrencyCode); 

第三步:

然后您可以使用您的代码:

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

最新更新