Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. class Product(models.Model):
  2. quantity = models.DecimalField( "Quantity", max_digits=8, decimal_places=2, default=0)
  3. retail_price = models.DecimalField( max_digits=10, decimal_places=2, default=0, blank=True)
  4. purchase_price= models.DecimalField( max_digits=8, decimal_places=2, default=0, blank=True)
  5. timi_xondrikis = models.DecimalField( max_digits=8, decimal_places=2, default=0, blank=True)
  6.  
  7. class ProductForm(ModelForm):
  8. class Meta:
  9. model = Product
  10. fields=('quantity','retail_price')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement