diff --git a/InvenTree/build/forms.py b/InvenTree/build/forms.py index b947e02887..0726779b87 100644 --- a/InvenTree/build/forms.py +++ b/InvenTree/build/forms.py @@ -210,7 +210,7 @@ class CompleteBuildOutputForm(HelperForm): location = forms.ModelChoiceField( queryset=StockLocation.objects.all(), - label = _('Location'), + label=_('Location'), help_text=_('Location of completed parts'), ) diff --git a/InvenTree/order/models.py b/InvenTree/order/models.py index 818bc81707..0c22b7978b 100644 --- a/InvenTree/order/models.py +++ b/InvenTree/order/models.py @@ -638,7 +638,7 @@ class PurchaseOrderLineItem(OrderLineItem): help_text=_("Supplier part"), ) - received = models.DecimalField(decimal_places=5, max_digits=15, default=0, verbose_name=_('Received') , help_text=_('Number of items received')) + received = models.DecimalField(decimal_places=5, max_digits=15, default=0, verbose_name=_('Received'), help_text=_('Number of items received')) purchase_price = MoneyField( max_digits=19, diff --git a/InvenTree/part/models.py b/InvenTree/part/models.py index d2f8b805d3..e10dfba4ba 100644 --- a/InvenTree/part/models.py +++ b/InvenTree/part/models.py @@ -2160,7 +2160,7 @@ class BomItem(models.Model): optional = models.BooleanField(default=False, verbose_name=_('Optional'), help_text=_("This BOM item is optional")) overage = models.CharField(max_length=24, blank=True, validators=[validators.validate_overage], - verbose_name=_('Overage'), + verbose_name=_('Overage'), help_text=_('Estimated build wastage quantity (absolute or percentage)') )