Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm running into a paradigm problem here. I don't know whether I should store money as a Decimal(), or if I should store it as a string and convert it to a decimal myself. My reasoning is this:

PayPal requires 2 decimal places, so if I have a product that is 49 dollars even, PayPal wants to see 49.00 come across the wire. Django's DecimalField() doesn't set a decimal amount. It only stores a maximum decimal places amount. So, if you have 49 in there, and you have the field set to 2 decimal places, it'll still store it as 49. I know that Django is basically type casting when it deserializes back from the database into a Decimal (since Databases don't have decimal fields), so I'm not completely concerned with the speed issues as much as I am with the design issues of this problem. I want to do what's best for extensibility.

Or, better yet, does anyone know how to configure a django DecimalField() to always format with the TWO_PLACES formatting style.

share|improve this question
re "since Databases don't have decimal fields"; Microsoft Sql Server has both "decimal" and "money" data types msdn.microsoft.com/en-us/library/aa258271%28v=sql.80%29.aspx – Tim Abell May 16 '11 at 20:47

8 Answers

up vote 26 down vote accepted

It's a bit late, but for anyone that stumbles across this, you might want to use the .quantize() method. Below is a custom field that automatically produces the correct value. Note that this is only when it is retrieved from the database, and wont help you when you set it yourself (until you save it to the db and retrieve it again!).

from django.db import models
from decimal import Decimal
class CurrencyField(models.DecimalField):
    __metaclass__ = models.SubfieldBase

    def to_python(self, value):
        try:
           return super(CurrencyField, self).to_python(value).quantize(Decimal("0.01"))
        except AttributeError:
           return None

(NB: this is untested, off the top of my head, but should work!)

[edit]

added __metaclass__, see http://stackoverflow.com/questions/2083591/django-why-does-this-custom-model-field-not-behave-as-expected

share|improve this answer
Excellent. Thanks whrde. Is this all you have to do to have a fully functional custom model field? (ie, will this work exactly the same as DecimalField except for the formatting). – orokusaki Jan 8 '10 at 14:15
1  
Also, what is the convention for storing custom fields? I'm thinking I'll put it in the root project folder. – orokusaki Jan 8 '10 at 14:16
Thanks, I just used this. I noticed I had to repeat the max_digits and decimal_places attributes every time I used CurrencyField, so I posted an answer that builds on yours to addresses this. – Dave Aaron Smith Nov 1 '12 at 21:44

I think you should store it in a decimal format and format it to 00.00 format only then sending it to PayPal, like this:

pricestr = "%01.2f" % price

If you want, you can add a method to your model:

def formattedprice(self):
    return "%01.2f" % self.price
share|improve this answer
6  
Also: store the currency in the database as well as the amount. Money isn't just a number. – Mr. Shiny and New 安宇 Jan 6 '10 at 15:22
True that. Thanks Mr Shiny and New – orokusaki Jan 6 '10 at 15:24
Thanks valya too. – orokusaki Jan 6 '10 at 15:27
3  
Mr Shiny, you certainly don't need to store the currency in the database if you know that all the currencies are going to be the same. In fact, most applications don't deal with multiple currencies. – Will Hardy Jan 6 '10 at 17:01

I suggest to avoid mixing representation with storage. Store the data as a decimal value with 2 places.

In the UI layer, display it in a form which is suitable for the user (so maybe omit the ".00").

When you send the data to PayPal, format it as the interface requires.

share|improve this answer

Money should be stored in money field, which sadly does not exist. Since money is two dimensional value (amount, currency).

There is python-money lib, that has many forks, yet I haven't found working one.


Recommendations:

python-money probably the best fork https://bitbucket.org/acoobe/python-money

django-money recommended by akumria: http://pypi.python.org pypi/django-money/ (havent tried that one yet).

share|improve this answer
Recommend github.com/reinbach/django-money instead of akumria's as it has some bugfixes and installs via pip. – Brantley Harris May 10 at 23:57

Building on @Will_Hardy's answer, here it is so you don't have to specify max_digits and decimal_places every time:

from django.db import models
from decimal import Decimal


class CurrencyField(models.DecimalField):
  __metaclass__ = models.SubfieldBase

  def __init__(self, verbose_name=None, name=None, **kwargs):
    super(CurrencyField, self). __init__(
        verbose_name=verbose_name, name=name, max_digits=10,
        decimal_places=2, **kwargs)

  def to_python(self, value):
    try:
      return super(CurrencyField, self).to_python(value).quantize(Decimal("0.01"))
    except AttributeError:
      return None
share|improve this answer
I have a field similar to that, but I use the defaults = {... and defaults.update(**kwargs) pattern. – orokusaki Nov 2 '12 at 18:00

You store it as a DecimalField and manually add the decimals if you need to, as Valya said, using basic formatting techniques.

You can even add a Model Method to you product or transaction model that will spit out the DecimalField as an appropriately formatted string.

share|improve this answer

In my experience and also from others, money is best stored as combination of currency and the amount in cents.

It's very easy to handle and calculate with it.

share|improve this answer

My late to the party version that adds South migrations.

from decimal import Decimal
from django.db import models

try:
    from south.modelsinspector import add_introspection_rules
except ImportError:
    SOUTH = False
else:
    SOUTH = True

class CurrencyField(models.DecimalField):
    __metaclass__ = models.SubfieldBase

    def __init__(self, verbose_name=None, name=None, **kwargs):
        decimal_places = kwargs.pop('decimal_places', 2)
        max_digits = kwargs.pop('max_digits', 10)

        super(CurrencyField, self). __init__(
            verbose_name=verbose_name, name=name, max_digits=max_digits,
            decimal_places=decimal_places, **kwargs)

    def to_python(self, value):
        try:
            return super(CurrencyField, self).to_python(value).quantize(Decimal("0.01"))
        except AttributeError:
            return None

if SOUTH:
    add_introspection_rules([
        (
            [CurrencyField],
            [],
            {
                "decimal_places": ["decimal_places", { "default": "2" }],
                "max_digits": ["max_digits", { "default": "10" }],
            },
        ),
    ], ['^application\.fields\.CurrencyField'])
share|improve this answer
+1 - better late than never. Thanks, mate. – orokusaki May 9 at 22:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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