I'm new to Ruby on Rails and I'm working on a very basic shopping cart system. I have a table items that has a column price of type integer. I'm having trouble displaying the price value in my views for prices that include both Euros and cents. Am I missing something obvious as far as handling currency in the Rails framework is concerned?
|
|
||||
|
|
|
You'll probably want to use a
In Rails, the If you insist on using integers, you will have to manually convert to and from As pointed out by mcl, to print the price, use:
|
|||||||||||||||||||||
|
|
Here's a fine, simple approach that leverages You'll need
Write this in your
What you'll get:
|
|||||||||||||||
|
|
Common practice for handling currency is to use decimal type. Here is a simple example from "Agile Web Development with Rails"
This will allow you to handle prices from -999,999.99 to 999,999.99
to sanity-check your values. |
|||
|
I had a whole thing here about how to store money in cents in an integer column. But I changed my mind and now I agree with molf's answer. |
||||
|
|
|
Using Virtual Attributes (Link to revised(paid) Railscast) you can store your price_in_cents in an integer column and add a virtual attribute price_in_dollars in your product model as a getter and setter.
Source: RailsCasts #016: Virtual Attributes: Virtual attributes are a clean way to add form fields that do not map directly to the database. Here I show how to handle validations, associations, and more. |
|||
|
|
|
Definitely integers. And even though BigDecimal technically exists |
||||
|
|
|
If someone is using Sequel the migration would look something like:
somehow Sequel ignores :precision and :scale (Sequel Version: sequel (3.39.0, 3.38.0)) |
|||
|
|