fixed styling

This commit is contained in:
Matthias 2021-04-06 18:33:57 +02:00
parent 530b90042a
commit 32eaf48c12
3 changed files with 3 additions and 3 deletions

View File

@ -210,7 +210,7 @@ class CompleteBuildOutputForm(HelperForm):
location = forms.ModelChoiceField(
queryset=StockLocation.objects.all(),
label = _('Location'),
label=_('Location'),
help_text=_('Location of completed parts'),
)

View File

@ -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,

View File

@ -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)')
)