vote up 0 vote down star
2

Hi guys,

I've searched high and low, but I could not find a solution, to what I think seems like a very common task.

In a form I want to have a text input that accepts currency strings (i.e. $1,000,000 or 1000 or $12.12 and in an ideal world even 1 million)

In the database I want to keep the value as a integer.

What is the best way to (a) validate that the input is a valid currency string, (b) when displaying the form, to display it formatted.

For date, i found the a great gem: validates_timeliness, which allows :

validates_date :my_date, :allow_blank => true

I would love to find a similar syntax for currency.

Thanks!

flag

60% accept rate
1  
Why would you want to store 12.12 as an integer? – Jason Punyon Nov 6 at 14:24
I have should have been more clear, currently I store my currency in the db as cents. But I am open to other suggestions. – Jonathan Nov 6 at 14:50

2 Answers

vote up 1 vote down check

Check out rails_money. I think it does everything you need, including handling $ in the input fields and storing the value in cents. In fact, you just create your column as price_in_cents, and it does the rest.

link|flag
That did the trick. Thanks. – Jonathan Nov 9 at 21:33
vote up 0 vote down

Checkout this similar post on Stackoverflow: http://stackoverflow.com/questions/1019939/ruby-on-rails-best-method-of-handling-currency-money

link|flag
Thanks Dave, I saw that, but I did not see where it handled converting the Currency string to a number. – Jonathan Nov 6 at 15:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.