2020-10-11 20:32:08 +00:00
|
|
|
|
2020-05-08 09:13:11 +00:00
|
|
|
import decimal
|
2020-05-08 08:56:03 +00:00
|
|
|
|
|
|
|
# Define DecimalField properties, used to represent amounts of money.
|
|
|
|
AMOUNT_MAX_DIGITS=10
|
|
|
|
AMOUNT_DECIMALS=2
|
|
|
|
|
2020-05-08 09:13:11 +00:00
|
|
|
decimal.getcontext().prec = AMOUNT_DECIMALS
|