I get the following error:
02/08 09:15:45> Decimal price: 0.00
02/08 09:15:45> Decimal price = None
TypeError: Cannot convert float to Decimal. First convert the float to a string
Here is my code:
s.price = Decimal("%.2f" % (float(request.data['subscription_price'])))
log('Decimal price: %s' % s.price)
if s.price == Decimal("0.00"):
s.price = None
log('Decimal price = None')
Any ideas about what I am doing wrong? I tried a hack to avoid saving a 0.00 in the database via the "if s.price == Decimal("0.00"):" ... to no avail.