Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
spree_multi_currency
Advanced tools
Support different currency and recalculate price from one to another
Add to Gemfile
gem "spree_multi_currency", :git => "git://github.com/pronix/spree-multi-currency.git"
Install the migrations for two new tables (currencies and currency conversion rates):
rake spree_multi_currency:install:migrations
rake db:migrate
Load up the list of all international currencies with corresponding codes:
rake spree_multi_currency:currency:iso4217 # Load currency ISO4217 table from Wikipedia http://en.wikipedia.org/wiki/ISO_4217
rake spree_multi_currency:currency:okv # Central Bank of Russian Federation
This step is not obligatory, i.e. you can manually fill up the 'currencies' table, but it's more practical to load the list with rake task above (and be sure the codes are OK), and then remove the currencies you don't want to support.
If you want get amount in base currency use base_total
Warning Rates are being calculated relative to currency configured as 'basic'. It is therefore obligatory to visit Spree admin panel (or use Rails console) and edit one of the currencies to be the 'basic' one.
Basic currency is also the one considered to be stored as product prices, shipment rates etc., from which all the other ones will be calculated using the rates.
After setting the basic currency, time to load the rates using one of the rake tasks below. There are three sources of conversion rates supported by this extension:
Rates from Central Bank of Russian Federation http://www.cbr.ru. These assume Russian Ruble is your basic currency:
rake spree_multi_currency:rates:cbr
Rates from European Central Bank. These assume Euro is your basic currency:
rake spree_multi_currency:rates:ecb
Rates from Google.
rake spree_multi_currency:rates:google[currency]
The argument in square brackets is the iso code of your basic currency, so to load rates when US Dollar is your basic currency, use
rake spree_multi_currency:rates:google[usd]
There's also an optional square-bracket-enclosed parameter "load_currencies" for :rates tasks above, but it just loads up currencies table from Wikipedia, so is not needed at this point.
In Spree Admin Panel, Configuration tab, two new options appear: Currency Settings and Currency Converters.
It's best to leave Currency Converters as-is, to be populated and updated by rake spree_multi_currency:rates tasks.
Within Currency Settings, like mentioned above, it is essential to set one currency as the Basic one. It's also necessary to set currency's locale for every locale you want to support (again, one locale - one currency). Feel free to go through currencies and delete the ones you don't want to support -- it will make everything easier to manage (and the :rates rake tasks will execute faster).
Self-explanatory:
http://[domain]/currency/[isocode]
<%= link_to "eur", currency_path(:eur) %>
To have custom currency symbols and formatters, you need to have a corresponding entry in one of locale files, with main key like currency_XXX, where XXX is the 3-letter iso code of given currency.
If you won't have it, all the other currencies will be rendered using default formatters and symbols, which can (will) lead to confusion and inconsistency. It is recommended to create locale entries for all currencies you want to support at your store and delete all the other currencies.
Example for usd, eur
--
currency_USD: &usd
number:
currency:
format:
format: "%u%n"
unit: "$"
separator: "."
delimiter: ","
precision: 2
significant: false
strip_insignificant_zeros: false
currency_EUR:
<<: *usd
number:
currency:
format:
format: "%u%n"
unit: "€"
= Multi Currency
Add to Gemfile gem "spree_multi_currency", :git => "git://github.com/pronix/spree-multi-currency.git"
rake spree_multi_currency:install:migrations
rake db:migrate
rake spree_multi_currency:currency:iso4217 # Load currency ISO4217 http://en.wikipedia.org/wiki/ISO_4217
rake spree_multi_currency:currency:okv # Общероссийский классификатор валют...
rake spree_multi_currency:rates:cbr # Курс Сбербанка РФ http://www.cbr.ru
rake "spree_multi_currency:rates:ecb[load_currencies]" # Rates from European Central Bank
for example rake spree_multi_currency:rates:google[USD] rake "spree_multi_currency:rates:google[currency,load_currencies]" # Rates from Google
In admin block, configuration menu add two tables currency and currency conversion rate
In reference currency enters the list of currencies, indicate if one of the major currencies (in the currency keeps all prices). Each currency assign corresponding locale.
In Exchange Rates, provides information on the price of the currency on a specified date to the basic currency(from russian central bank).
In the exchange rates set date, currency, and face value of the currency in the base currency.
To fill in the exchange rate, you can use task for download exchange rates from the site of the Central Bank (http://www.cbr.ru):
rake spree_multi_currencies:rates:cbr, as in this problem, loading the list of currencies.
В справочнике Валюты заносим список валют, указываем одну из валют основной (в этой валюте хранятся все цены). Каждой валюте назначаем соответствующую локаль.
В справчнике Курсы валют, содержиться информация о цене валюты на определенную дату к основной валюте.
В курсе валют указываеться дата, валюта, номинал и стоимость валюты в основной валюте.
Для заполнения курса валют, можно воспользоватьбся задачей загрузки курса валют с сайта ЦБ(http://www.cbr.ru):
rake spree_multi_currencies:rates:cbr, так же в этой задаче идет загрузка списка валют.
По умолчанию валюта выбирается от текущей локали сайта. Так же можно сменить локаль по адресу http://[domain]/currency/[isocode], <%= link_to "eur", currency_path(:eur) %>
isocode: eur, usd, rub (цифровой код прописанные в справочнике валюты) После смены валюты через url перестает работать смена валюты на основание текущей локали.
currency_USD: &usd number: currency: format: format: "%u%n" unit: "$" separator: "." delimiter: "," precision: 2 significant: false strip_insignificant_zeros: false
currency_EUR: <<: *usd number: currency: format: format: "%u%n" unit: "€"
For tests
For start tests require exec:
bundle exec rake test_app && bundle exec rake spec
extention require store in ./spree in Rakefile defined
ENV['SPREE_GEM_PATH'] = "/home/dima/project/spree"
FAQs
Unknown package
We found that spree_multi_currency demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.