2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-12-14 00:09:56 +00:00

Add 'has_variants' and 'variant_of' field for Part

- StockItem cannot point to a part which is a template part
This commit is contained in:
Oliver Walters
2019-05-25 22:27:36 +10:00
parent 1ac1c472c7
commit 1a2fb9e170
4 changed files with 68 additions and 1 deletions

View File

@@ -192,6 +192,7 @@ class Part(models.Model):
description: Longer form description of the part
keywords: Optional keywords for improving part search results
IPN: Internal part number (optional)
has_variants: If True, this part is a 'template' part and cannot be instantiated as a StockItem
URL: Link to an external page with more information about this part (e.g. internal Wiki)
image: Image of this part
default_location: Where the item is normally stored (may be null)
@@ -258,6 +259,17 @@ class Part(models.Model):
variant = models.CharField(max_length=32, blank=True, help_text='Part variant or revision code')
has_variants = models.BooleanField(default=False, help_text='Is this part a template part?')
variant_of = models.ForeignKey('part.Part', related_name='variants',
null=True, blank=True,
limit_choices_to={
'has_variants': True,
'active': True,
},
on_delete=models.SET_NULL,
help_text='Is this part a variant of another part?')
description = models.CharField(max_length=250, blank=False, help_text='Part description')
keywords = models.CharField(max_length=250, blank=True, help_text='Part keywords to improve visibility in search results')