Product quantity must be positive

This commit is contained in:
Yohann D'ANELLO 2020-08-06 18:05:58 +02:00
parent 9c7cb07dec
commit 5b3361f086
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class Product(models.Model):
verbose_name=_("Designation"),
)
quantity = models.IntegerField(
quantity = models.PositiveIntegerField(
verbose_name=_("Quantity")
)