mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
update API endpoint
This commit is contained in:
parent
752b70c1f7
commit
ef8c656b4f
@ -12,11 +12,14 @@ import common.models
|
|||||||
INVENTREE_SW_VERSION = "0.7.0 dev"
|
INVENTREE_SW_VERSION = "0.7.0 dev"
|
||||||
|
|
||||||
# InvenTree API version
|
# InvenTree API version
|
||||||
INVENTREE_API_VERSION = 30
|
INVENTREE_API_VERSION = 31
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Increment this API version number whenever there is a significant change to the API that any clients need to know about
|
Increment this API version number whenever there is a significant change to the API that any clients need to know about
|
||||||
|
|
||||||
|
v31 -> 2022-03-14
|
||||||
|
- Adds "updated" field to SupplierPriceBreakList and SupplierPriceBreakDetail API endpoints
|
||||||
|
|
||||||
v30 -> 2022-03-09
|
v30 -> 2022-03-09
|
||||||
- Adds "exclude_location" field to BuildAutoAllocation API endpoint
|
- Adds "exclude_location" field to BuildAutoAllocation API endpoint
|
||||||
- Allows BuildItem API endpoint to be filtered by BomItem relation
|
- Allows BuildItem API endpoint to be filtered by BomItem relation
|
||||||
|
@ -278,4 +278,5 @@ class SupplierPriceBreakSerializer(InvenTreeModelSerializer):
|
|||||||
'quantity',
|
'quantity',
|
||||||
'price',
|
'price',
|
||||||
'price_currency',
|
'price_currency',
|
||||||
|
'updated',
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user