diff --git a/src/backend/InvenTree/InvenTree/api_version.py b/src/backend/InvenTree/InvenTree/api_version.py index ead7da69fa..578f5e56f0 100644 --- a/src/backend/InvenTree/InvenTree/api_version.py +++ b/src/backend/InvenTree/InvenTree/api_version.py @@ -1,11 +1,14 @@ """InvenTree API version information.""" # InvenTree API version -INVENTREE_API_VERSION = 387 +INVENTREE_API_VERSION = 388 """Increment this API version number whenever there is a significant change to the API that any clients need to know about.""" INVENTREE_API_TEXT = """ +v388 -> 2025-08-23 : https://github.com/inventree/InvenTree/pull/10213 + - Disable paging on PurchaseOrderReceive call + v387 -> 2025-08-19 : https://github.com/inventree/InvenTree/pull/10188 - Adds "update_records" field to the DataImportSession API diff --git a/src/backend/InvenTree/order/api.py b/src/backend/InvenTree/order/api.py index 7d6a68ea06..31205352e1 100644 --- a/src/backend/InvenTree/order/api.py +++ b/src/backend/InvenTree/order/api.py @@ -492,6 +492,7 @@ class PurchaseOrderReceive(PurchaseOrderContextMixin, CreateAPI): queryset = models.PurchaseOrderLineItem.objects.none() serializer_class = serializers.PurchaseOrderReceiveSerializer + pagination_class = None def create(self, request, *args, **kwargs): """Override the create method to handle stock item creation."""