I'm in the process of learning Ruby on Rails and I've set myself the task of putting together a very basic shopping cart system. I have a table items that costs of a price column currently set to integer. I have no problem with inputting the data in cent, but when it comes to displaying the price in th view, well I obviously want it to be in Euros & cent. Can anyone tell me what the best currency/money handling practice is with RoR? An example?
|
| |||
|
feedback
|
closed as not constructive by casperOne♦ yesterday
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
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:
| |||||||||||||||||||
feedback
|
|
Here's a fine, simple approach that leverages You'll need
Write this in your
class Product < ActiveRecord::Base
composed_of :price,
:class_name => 'Money',
:mapping => %w(price cents),
:converter => Proc.new { |value| value.respond_to?(:to_money) ? value.to_money : Money.empty }
...
What you'll get:
| |||||||||||
feedback
|
|
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. | |||||||
feedback
|
|
Just last week I dealt with this issue. I have a class In my
In my
As mentioned, the model attribute is I added this to the model to handle the incomming money data:
| |||
|
feedback
|