Module: Workarea::Admin::GlobalEHelpers
- Defined in:
- app/helpers/workarea/admin/global_e_helpers.rb
Instance Method Summary collapse
Instance Method Details
#currency_options(filtered_currencies = []) ⇒ Object
4 5 6 7 8 9 10 |
# File 'app/helpers/workarea/admin/global_e_helpers.rb', line 4 def (filtered_currencies = []) filtered_currencies += [Money.default_currency] [["---", nil]] + (all_currencies - filtered_currencies).map do |currency| ["#{currency.name} (#{currency.symbol})", currency.iso_code] end.compact end |