Solutions for amount fields with related currency ?

I found the Django package django-money which looks really useful.

But I’m wondering if there are any other packages?

From SAP I’m used to these amount fields being stored internally without any decimal point. Placement of the decimal point depends on the related currency. Does anyone know a Django package with this kind of solution?

Hi @dennisvd. I think django-money is more or less the way to go here. :slightly_smiling_face:

1 Like

Thx for the reply.

I ended up not using django-money but using decimal fields and a currency field.
For my use case I could not really see the benefit in using django-money.

1 Like