diff --git a/InvenTree/stock/forms.py b/InvenTree/stock/forms.py index 26f81ba958..cccf265605 100644 --- a/InvenTree/stock/forms.py +++ b/InvenTree/stock/forms.py @@ -38,7 +38,7 @@ class CreateStockItemForm(HelperForm): class MoveStockItemForm(forms.ModelForm): - note = forms.CharField(label='Notes', required=True) + note = forms.CharField(label='Notes', required=True, help_text='Add note (required)') class Meta: model = StockItem