Multi Cuurrency possible?

We encourage users to post events happening in the community to the community events group on https://www.drupal.org.
sarath.verve's picture

Hi team,

I am starting a new site with multi currency option. Can you please advice me whether I can do it in drupal or not?

I have found a lot of modules but confused of which one to use... Please suggest me...

Comments

Not clear

Nikdhil Mdohfan's picture

Hi
Please specify the exact requirement you are looking for, like cart, paypal etc.

Hi Nikhil.. Thanks for ur

sarath.verve's picture

Hi Nikhil..

Thanks for ur swift reply...

Actually i need a site with multiple currency option for each products. Products will be creating with default currency rate (say: 10 dollar.). But wen a user purchase this product he can select his currency (say euro), we need to convert 10 dollar to 'X' euro and the paypal have to take 'X' euros for his purchase... Is this possible in drupal? Which module suit for this requirement?

Thanks for all ur help..

Suggest to use Ubercart

Nikdhil Mdohfan's picture

Hope you are familiar with ubercart.
Then this might help you
drupal.org/project/multicurrency

Hey Sarath, Please specify

lazyD's picture

Hey Sarath,

Please specify the Drupal Version you are using, we have contributed modules like multiple currency (module multicurrency). I personally have not used that but on the project page here seems no one is incharge of maintenance so you will only have README to help you.

This is really an interesting topic for me.. do keep us posted on your updates...

Thanks
D

Search for it

Nikdhil Mdohfan's picture

Hello,

drupal.org/project/uc_multiprice

I think i can help you on this ..

Using D6

sarath.verve's picture

Hi Nikhil and Mishra,

I am using D6 currently. But if am getting a solution in D7, I am planning to work this project in D7. I am looking for a solution for this now. I will try the above 2 modules and update you guys....

http://drupal.org/project/mul

sarath.verve's picture

http://drupal.org/project/multicurrency
this module is not suitable for D6.

http://drupal.org/project/uc_multiprice
In this module, we need to feed the value for other currency also.

But I want to convert the default amount , say, default 10 dollar to its equivalent euro dynamically...

Any idea to solve this issue???

Both the mentioned module are

lazyD's picture

Both the mentioned module are not available in D6... can you please mention the D7 solution you found?

Thanks.

No.. I am still looking for a

sarath.verve's picture

No.. I am still looking for a solution. Either in D6 or D7. Or else I have to go for Majento :'(

Never heard of such a module

Nikdhil Mdohfan's picture

Never heard of such a module that checks the current stock values of currency !

Hi Nikhil, I think u r

sarath.verve's picture

Hi Nikhil,

I think u r right... Its not possible in drupal... i am planning to give it to our magento team.. :(

Prestashop

sarath.verve's picture

Hi guys...

Prestashop gives this functionality...!

Hi, did anyone find proper

tejaspmehta's picture

Hi,

did anyone find proper solution ? we have made one code in our custom websites for such thing. It convert default currency to related currency and then we manage payment gateway based on currency code. It takes current value of related currency from other sites API and gives you latest conversation rate.

If anyone need help, we can post that code and you just have to convert it to drupal code.

Hey tejaspmehta, Please do

vaibhavjain's picture

Hey tejaspmehta,

Please do post the code in here. I am planning to implement the same in one my projects. I will be doing it in D6.
Currently we are planning to use the Google currency API, to keep the conversion rates at best. If you are using some other currency conversion API, Please do let us know ...

Thanks :)

Vaibhav Jain

Hello Vaibhav, Here is code

tejaspmehta's picture

Hello Vaibhav,

Here is code you requested. It is using Yahoo API.

$todayPrice = Currency_Converter(1, 'USD', 'CAD');

function Currency_Converter($amount, $from, $to)
{
   $handle = @fopen('http://finance.yahoo.com/d/quotes.csv?e=.csv&f=l1&s='.$from.$to.'=X', 'r');
    if($handle)
    {
      $rate = fgets($handle, 4096);
      $total = $rate$amount;
        //$total = number_format(($rate
$amount),2);
   }
  else
   {
      $total = number_format(0,2);
   }
  return $total;
}

I hope it will help you.

Thank you
Tejas Mehta

Thanks Tejas, this will

vaibhavjain's picture

Thanks Tejas, this will surely help...

Vaibhav Jain

India

Group notifications

This group offers an RSS feed. Or subscribe to these personalized, sitewide feeds:

Hot content this week