2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-09 07:00:56 +00:00

Include UID field in StockItem API

This commit is contained in:
Oliver Walters
2020-04-14 22:57:46 +10:00
parent ba4a1fd771
commit 977316cb3a
2 changed files with 4 additions and 1 deletions

View File

@ -344,6 +344,7 @@ class StockList(generics.ListCreateAPIView):
data = queryset.values(
'pk',
'uid',
'parent',
'quantity',
'serial',
@ -540,7 +541,7 @@ class StockList(generics.ListCreateAPIView):
'supplier_part',
'customer',
'belongs_to',
'build'
'build',
]