2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 19:46:46 +00:00

Fix for part serializer (#8069)

* Fix for part serializer

- Allow "revision" to accept null values
- Matches internal field

* Bump API version
This commit is contained in:
Oliver 2024-09-04 20:16:34 +10:00 committed by GitHub
parent 90a6ae3426
commit fe36e641c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 6 deletions

View File

@ -1,13 +1,16 @@
"""InvenTree API version information.""" """InvenTree API version information."""
# InvenTree API version # InvenTree API version
INVENTREE_API_VERSION = 249 INVENTREE_API_VERSION = 250
"""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."""
INVENTREE_API_TEXT = """ INVENTREE_API_TEXT = """
v250 - 2024-09-04 : https://github.com/inventree/InvenTree/pull/8069
- Fixes 'revision' field definition in Part serializer
v249 - 2024-08-23 : https://github.com/inventree/InvenTree/pull/7978 v249 - 2024-08-23 : https://github.com/inventree/InvenTree/pull/7978
- Sort status enums - Sort status enums

View File

@ -354,11 +354,9 @@ class PartBriefSerializer(InvenTree.serializers.InvenTreeModelSerializer):
help_text=_('Internal Part Number'), help_text=_('Internal Part Number'),
max_length=100, max_length=100,
) )
revision = serializers.CharField( revision = serializers.CharField(
required=False, required=False, default='', allow_blank=True, allow_null=True, max_length=100
allow_null=True,
help_text=_('Part revision or version number'),
max_length=100,
) )
# Pricing fields # Pricing fields
@ -909,7 +907,7 @@ class PartSerializer(
) )
revision = serializers.CharField( revision = serializers.CharField(
required=False, default='', allow_blank=True, max_length=100 required=False, default='', allow_blank=True, allow_null=True, max_length=100
) )
# Annotated fields # Annotated fields