我正在magento
的产品列表页面上按价格范围功能实施自定义过滤器我有多种货币商店,基础货币是INR,其他6到7种货币
我从价格范围中获取输入并在产品集合中使用以下过滤器
$this->_productCollection = $layer->getProductCollection();
if($this->getRequest()->getParam('filterPrice')){
$baseCurrency = Mage::app()->getStore()->getBaseCurrencyCode();
$currentCurrency = Mage::app()->getStore()->getCurrentCurrencyCode();
$price = explode('-',$this->getRequest()->getParam('filterPrice'));
$min = str_replace(Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol(),'',$price[0]);
$min = $this->currencyConverter($min, $currentCurrency, $baseCurrency);
$max = str_replace(Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol(),'',$price[1]);
$max = $this->currencyConverter($max, $currentCurrency, $baseCurrency);
$this->_productCollection->addAttributeToFilter('price',array('from'=>$min,'to'=>$max));
}
货币转换器功能就像
public function currencyConverter($amount,$from,$to)
{
if($from!=$to){
$targetCurrency = Mage::getModel('directory/currency')->load($to);
$price = Mage::helper('directory')->currencyConvert($amount, $from, $targetCurrency);
$converted_final_price = Mage::app()->getStore()->roundPrice($price);
return $converted_final_price;
}else{
return $amount;
}
}
但我收到了以下错误
未定义的费率来自" CAD-INR"。
从其他线程,我知道我需要设置magento后端的货币和汇率,并且我实现相同的,但仍然是错误仍然相同。
答案 0 :(得分:1)
Magento仅对双方的费率"基础货币=>显示货币"。
您有基础货币" INR"并且你可能有对率" INR => CAD&#34 ;. 您的错误表明您的代码试图获得" CAD"货币并且在您的系统中,您没有评价" CAD => INR"
请确保您尝试将基础货币的价格转换为任何其他货币,而不是两种显示货币之间的价格。 但是如果你需要这个,你应该使用自己的转换函数来计算必要的比率。