2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-13 08:21:26 +00:00

Add 'active' field to Part model

This commit is contained in:
Oliver Walters
2019-04-28 23:00:38 +10:00
parent 13756751c3
commit c2a35b6656
2 changed files with 21 additions and 0 deletions

View File

@ -171,6 +171,9 @@ class Part(models.Model):
# Can this part be sold to customers?
salable = models.BooleanField(default=False, help_text="Can this part be sold to customers?")
# Is this part active?
active = models.BooleanField(default=True, help_text='Is this part active?')
notes = models.TextField(blank=True)
def __str__(self):