diff --git a/InvenTree/stock/views.py b/InvenTree/stock/views.py index 49db90d578..672f0a3892 100644 --- a/InvenTree/stock/views.py +++ b/InvenTree/stock/views.py @@ -1239,8 +1239,8 @@ class StockItemCreate(AjaxCreateView): valid = False form.errors['quantity'] = [_('Invalid quantity')] - if quantity <= 0: - form.errors['quantity'] = [_('Quantity must be greater than zero')] + if quantity < 0: + form.errors['quantity'] = [_('Quantity cannot be less than zero')] valid = False if part is None: