2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 13:35:40 +00:00

Add function to get the default location for a part

- If field not specified, look at the part category
This commit is contained in:
Oliver Walters
2019-05-04 19:06:39 +10:00
parent f270375847
commit 71972f4454
2 changed files with 16 additions and 1 deletions

View File

@ -148,6 +148,21 @@ class Part(models.Model):
help_text='Where is this item normally stored?',
related_name='default_parts')
def get_default_location(self):
""" Get the default location for a Part (may be None).
If the Part does not specify a default location,
look at the Category this part is in.
The PartCategory object may also specify a default stock location
"""
if self.default_location:
return self.default_location
elif self.category:
return self.category.default_location
return None
# Default supplier part
default_supplier = models.ForeignKey('part.SupplierPart',
on_delete=models.SET_NULL,