Showing posts with label Magento currency convert issue with CitrusPay payment method. Show all posts
Showing posts with label Magento currency convert issue with CitrusPay payment method. Show all posts

Monday, 20 July 2015

INR currency convert issue with CitrusPay payment method in magento


INR currency convert issue with CitrusPay payment method in magento

CitrusPay Only support INR currency so all people have the issue that if customer order in other currency then currency does not convert at CitrusPay page.

Here i have fixed small patch in magento, Just open app\code\community\CitrusPay\Moto\Block\Form\Pay.php file

Find the below line and comment it out

$amount = $order->getGrandTotal();  // Comment it out

Put instead of below line

$amount = $order->getBaseGrandTotal();

Thats it.... Enjoy Chandresh rana's Coding... :)