Multi Cuurrency possible?

Events happening in the community are now at Drupal community events on www.drupal.org.
Posted by sarath.verve on November 10, 2011 at 6:09am

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

Posted by Nikdhil Mdohfan on November 10, 2011 at 6:19am

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

Hi Nikhil.. Thanks for ur

Posted by sarath.verve on November 10, 2011 at 6:27am

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

Posted by Nikdhil Mdohfan on November 10, 2011 at 6:42am

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

Hey Sarath, Please specify

Posted by lazyD on November 10, 2011 at 6:50am

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

Posted by Nikdhil Mdohfan on November 10, 2011 at 7:27am

Hello,

drupal.org/project/uc_multiprice

I think i can help you on this ..

Using D6

Posted by sarath.verve on November 10, 2011 at 8:00am

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

Posted by sarath.verve on November 10, 2011 at 8:32am

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

Posted by lazyD on November 10, 2011 at 9:08am

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

Posted by sarath.verve on November 10, 2011 at 9:14am

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

Posted by Nikdhil Mdohfan on November 11, 2011 at 12:43pm

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

Hi Nikhil, I think u r

Posted by sarath.verve on November 11, 2011 at 1:02pm

Hi Nikhil,

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

Prestashop

Posted by sarath.verve on November 16, 2011 at 8:42am

Hi guys...

Prestashop gives this functionality...!

Hi, did anyone find proper

Posted by tejaspmehta on January 28, 2012 at 5:37am

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

Posted by vaibhavjain on January 28, 2012 at 4:06pm

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

Posted by tejaspmehta on January 30, 2012 at 11:23am

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

Posted by vaibhavjain on January 30, 2012 at 11:42am

Thanks Tejas, this will surely help...

Vaibhav Jain

India

Group notifications

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

AltStyle によって変換されたページ (->オリジナル) /