Browse Source

allowed empty comment in ProductBarcode

master
Frederic 11 years ago
parent
commit
c5814a861a
  1. 2
      cash/models.py

2
cash/models.py

@ -74,7 +74,7 @@ class Product(models.Model): @@ -74,7 +74,7 @@ class Product(models.Model):
class ProductBarcode(models.Model):
barcode = models.CharField(max_length=32, unique=True)
comment = models.CharField(max_length=128)
comment = models.CharField(max_length=128, blank=True)
product = models.ForeignKey(Product)
def __unicode__(self):

Loading…
Cancel
Save