Skip to content

Commit

Permalink
Improve compatibility with older versionof InvenTree Server. (#251)
Browse files Browse the repository at this point in the history
* Add MIN_API_VERSION to SalesOrderAllocation model. Workaround for old versions of server

* Revert unintended change
  • Loading branch information
miggland authored Dec 16, 2024
1 parent 80ff58d commit d12e52a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion inventree/sales_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ class SalesOrderAllocation(
):
"""Class representing the SalesOrderAllocation database model."""

MIN_API_VERSION = 267
URL = 'order/so-allocation'

def getOrder(self):
Expand Down Expand Up @@ -275,7 +276,10 @@ def allocations(self):
Note: This is an overload of getAllocations() method, for legacy compatibility.
"""
return self.getAllocations()
try:
return self.getAllocations()
except NotImplementedError:
return self._data['allocations']

def complete(
self,
Expand Down

0 comments on commit d12e52a

Please sign in to comment.