Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading