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 <sh...@milochik.com> 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 django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to