2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-20 02:15:53 +00:00

Add quantity field to StockItemTracking

- Keep track of historical levels of part availability
This commit is contained in:
Oliver Walters
2019-04-13 00:14:10 +10:00
parent 93bb0bf6f4
commit 926d717190
4 changed files with 29 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ class StockTrackingSerializer(serializers.ModelSerializer):
'date',
'title',
'notes',
'quantity',
'user',
'system',
]
@@ -43,6 +44,7 @@ class StockTrackingSerializer(serializers.ModelSerializer):
'date',
'user',
'system',
'quantity',
]