add-minimum-stock-to-brief-part-serializer (#10497)
* add-minimum-stock-to-brief-part-serializer * Remove unnecesary lines * Update version.py * Update version.py * Update api_version.py
This commit is contained in:
parent
835e9e2556
commit
fff0d67791
|
|
@ -1,12 +1,15 @@
|
|||
"""InvenTree API version information."""
|
||||
|
||||
# InvenTree API version
|
||||
INVENTREE_API_VERSION = 403
|
||||
INVENTREE_API_VERSION = 404
|
||||
|
||||
"""Increment this API version number whenever there is a significant change to the API that any clients need to know about."""
|
||||
|
||||
INVENTREE_API_TEXT = """
|
||||
|
||||
v404 -> 2025-10-06: https://github.com/inventree/InvenTree/pull/10497
|
||||
- Add minimum_stock to PartBrief api response
|
||||
|
||||
v403 -> 2025-10-06: https://github.com/inventree/InvenTree/pull/10499
|
||||
- Adds ability to partially scrap a build output
|
||||
- Adds ability to partially complete a build output
|
||||
|
|
|
|||
|
|
@ -336,6 +336,7 @@ class PartBriefSerializer(InvenTree.serializers.InvenTreeModelSerializer):
|
|||
'locked',
|
||||
'assembly',
|
||||
'component',
|
||||
'minimum_stock',
|
||||
'is_template',
|
||||
'purchaseable',
|
||||
'salable',
|
||||
|
|
|
|||
Loading…
Reference in New Issue