Thanks! Solved:
In models.py:
class OurProducts(models.Model):
code = models.CharField(max_length=60)
name = models.CharField(max_length=80)
price = models.DecimalField (max_digits=8, decimal_places=2)
def combined_price(self):
from decimal import Decimal
return round(self.price * Decimal(0.65),2)
On May 10, 9:41 pm, Shawn Milochik <[email protected]> wrote:
> What error do you get?
>
> You should be able to import Decimal then do: discount = Decimal('0.65')
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.