价格换算 - magento



public function formatPrice($price,$order){
		
		$from = $order['order_currency_code'];
		$to = $order["base_currency_code"];
		
		$rate = Mage::helper('directory')->currencyConvert(1, $to, $from);
		$base_price = $price/$rate;
		return  Mage::helper('core')->currency($base_price, true, false);
		 
		
	
	}


你可能感兴趣的:(价格换算 - magento)