Handling price information in django
Project description
ABOUT
django_price is an attempt to implement price representation in django, the right way. Prices itself are very easy to implement, but may be done very wrong if it comes to do calculations including tax.
django_price features a Price class to represent net/tax/gross prices. This class may be added, multiplied, … like you would some “simple decimal” expect to behave. Internaly however it keeps track of all applied taxes and its corresponsing net/tax/groos amounts. So adding two prices to calculate the total of - for example - an invoice does not loose important information (like which tax amounts are included).
WHY
As said above price calculation can go terribly wrong. This even happens for big players like Magento (10€ product + 5€ shipping = 15.01€ for 19% tax). django_price tries to do things right, to avoid such issues.
FEATURES
Basic calculation for prices (including tax information)
Knows the used currency (for rounding and formatting)
Stores taxes to your database (LinearTax and Multitax)
Proper rounding for prices (on demand, based on used currency)
Utilities to: - Store prices to the database - Round prices based on the used currency
ROUNDING
django_price does implicid rounding when calculating the net/gross/tax amount of prices. In addition the raw, precise values are stored. So when you calculate with prices this is always done using the precise prices, afterwards the rounded results are recalculated.
If yoou need prices to stay stable (10 times 100 should be exactly 1000) you may need to do explicid rounding.
REQUIREMENTS
Django (obviously)
django_deferred_polymorph (may be skipped if you don’t use the supplied models)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django_price-0.2.1.tar.gz
.
File metadata
- Download URL: django_price-0.2.1.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 270cb8dd05ea7f9635c010135d701b2eaa1a1016fff493e2f0f6ca7d1323702f |
|
MD5 | a5c26cb9875503eb57755b2357f115fc |
|
BLAKE2b-256 | addf78e8d6e61871d6b85e500eed80eef9c40011ac3404eb524814c8aca9ac5a |