mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-15 19:45:46 +00:00
Add function to get the number of required tests for a part
This commit is contained in:
@ -1033,6 +1033,9 @@ class Part(MPTTModel):
|
|||||||
# Return the tests which are required by this part
|
# Return the tests which are required by this part
|
||||||
return self.getTestTemplates(required=True)
|
return self.getTestTemplates(required=True)
|
||||||
|
|
||||||
|
def requiredTestCount(self):
|
||||||
|
return self.getRequiredTests().count()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def attachment_count(self):
|
def attachment_count(self):
|
||||||
""" Count the number of attachments for this part.
|
""" Count the number of attachments for this part.
|
||||||
|
Reference in New Issue
Block a user