From 76ec44d770e77ca2b7ea83af90569f98dbccc208 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Wed, 28 Aug 2019 22:04:04 +1000 Subject: [PATCH] Form improvements --- InvenTree/stock/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()