mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-14 19:15:41 +00:00
Bug fix
- Turns out 'item_count' was actually used for something (that I wrote... recently...)
This commit is contained in:
@ -55,6 +55,13 @@ class StockLocation(InvenTreeTree):
|
||||
|
||||
return StockItem.objects.filter(location__in=self.getUniqueChildren()).count()
|
||||
|
||||
@property
|
||||
def item_count(self):
|
||||
""" Simply returns the number of stock items in this location.
|
||||
Required for tree view serializer.
|
||||
"""
|
||||
return self.stock_item_count
|
||||
|
||||
|
||||
@receiver(pre_delete, sender=StockLocation, dispatch_uid='stocklocation_delete_log')
|
||||
def before_delete_stock_location(sender, instance, using, **kwargs):
|
||||
|
@ -79,7 +79,7 @@ class StockTest(TestCase):
|
||||
|
||||
# Drawer 3 should have three stock items
|
||||
self.assertEqual(self.drawer3.stock_items.count(), 3)
|
||||
self.assertEqual(self.drawer3.stock_item_count, 3)
|
||||
self.assertEqual(self.drawer3.item_count, 3)
|
||||
|
||||
def test_stock_count(self):
|
||||
part = Part.objects.get(pk=1)
|
||||
|
Reference in New Issue
Block a user