2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 12:35:46 +00:00

Merge branch 'master' of https://github.com/inventree/InvenTree into matmair/issue6281

This commit is contained in:
Matthias Mair
2025-01-13 08:16:42 +01:00
2 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,9 @@ v300 - 2025-01-10 : https://github.com/inventree/InvenTree/pull/6293
- Removes a considerable amount of old auth endpoints - Removes a considerable amount of old auth endpoints
- Introduces allauth based REST API - Introduces allauth based REST API
v300 - 2025-01-13 - https://github.com/inventree/InvenTree/pull/8886
- Allow null value for 'expiry_date' field introduced in #8867
v299 - 2025-01-10 - https://github.com/inventree/InvenTree/pull/8867 v299 - 2025-01-10 - https://github.com/inventree/InvenTree/pull/8867
- Adds 'expiry_date' field to the PurchaseOrderReceive API endpoint - Adds 'expiry_date' field to the PurchaseOrderReceive API endpoint
- Adds 'default_expiry` field to the PartBriefSerializer, affecting API endpoints which use it - Adds 'default_expiry` field to the PartBriefSerializer, affecting API endpoints which use it

View File

@ -770,6 +770,7 @@ class PurchaseOrderLineItemReceiveSerializer(serializers.Serializer):
label=_('Expiry Date'), label=_('Expiry Date'),
help_text=_('Enter expiry date for incoming stock items'), help_text=_('Enter expiry date for incoming stock items'),
required=False, required=False,
allow_null=True,
default=None, default=None,
) )