diff --git a/InvenTree/stock/forms.py b/InvenTree/stock/forms.py index c3acfd436c..e03f84a339 100644 --- a/InvenTree/stock/forms.py +++ b/InvenTree/stock/forms.py @@ -67,8 +67,8 @@ class SerializeStockForm(forms.ModelForm): """ Form for serializing a StockItem. """ destination = forms.ChoiceField(label='Destination', required=True, help_text='Destination for serialized stock (by default, will remain in current location)') - serial_numbers = forms.CharField(label='Serial numbers', required=True, help_text='Unique serial numbers') - note = forms.CharField(label='Notes', required=False, help_text='Add transaction note') + serial_numbers = forms.CharField(label='Serial numbers', required=True, help_text='Unique serial numbers (must match quantity)') + note = forms.CharField(label='Notes', required=False, help_text='Add transaction note (optional)') def get_location_choices(self): locs = StockLocation.objects.all()