demarches-normaliennes/app/helpers/etablissement_helper.rb
2018-04-09 13:18:10 +02:00

5 lines
160 B
Ruby

module EtablissementHelper
def pretty_currency(capital_social)
number_to_currency(capital_social, delimiter: ' ', unit: '€', format: '%n %u')
end
end