Files
pretix_original/src/pretix/base/decimal.py
2016-02-11 17:27:29 +01:00

6 lines
134 B
Python

from decimal import ROUND_HALF_UP, Decimal
def round_decimal(dec):
return Decimal(dec).quantize(Decimal('0.01'), ROUND_HALF_UP)