mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 11:36:44 +00:00
Simple typo fix (#3968)
This commit is contained in:
parent
a2abdc297b
commit
a008d360af
@ -14,6 +14,6 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='partcategory',
|
model_name='partcategory',
|
||||||
name='structural',
|
name='structural',
|
||||||
field=models.BooleanField(default=False, help_text="Parts may not be directly assigned to a structural category, but may be assigned to it's child categories.", verbose_name='Structural'),
|
field=models.BooleanField(default=False, help_text="Parts may not be directly assigned to a structural category, but may be assigned to child categories.", verbose_name='Structural'),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
@ -122,7 +122,7 @@ class PartCategory(MetadataMixin, InvenTreeTree):
|
|||||||
verbose_name=_('Structural'),
|
verbose_name=_('Structural'),
|
||||||
help_text=_(
|
help_text=_(
|
||||||
'Parts may not be directly assigned to a structural category, '
|
'Parts may not be directly assigned to a structural category, '
|
||||||
'but may be assigned to it\'s child categories.'),
|
'but may be assigned to child categories.'),
|
||||||
)
|
)
|
||||||
|
|
||||||
default_keywords = models.CharField(null=True, blank=True, max_length=250, verbose_name=_('Default keywords'), help_text=_('Default keywords for parts in this category'))
|
default_keywords = models.CharField(null=True, blank=True, max_length=250, verbose_name=_('Default keywords'), help_text=_('Default keywords for parts in this category'))
|
||||||
|
@ -13,6 +13,6 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='stocklocation',
|
model_name='stocklocation',
|
||||||
name='structural',
|
name='structural',
|
||||||
field=models.BooleanField(default=False, help_text="Stock items may not be directly located into a structural stock locations, but may be located to it's child locations.", verbose_name='Structural'),
|
field=models.BooleanField(default=False, help_text="Stock items may not be directly located into a structural stock locations, but may be located to child locations.", verbose_name='Structural'),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
@ -112,7 +112,7 @@ class StockLocation(InvenTreeBarcodeMixin, MetadataMixin, InvenTreeTree):
|
|||||||
verbose_name=_('Structural'),
|
verbose_name=_('Structural'),
|
||||||
help_text=_(
|
help_text=_(
|
||||||
'Stock items may not be directly located into a structural stock locations, '
|
'Stock items may not be directly located into a structural stock locations, '
|
||||||
'but may be located to it\'s child locations.'),
|
'but may be located to child locations.'),
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_location_owner(self):
|
def get_location_owner(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user