mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-15 11:35:41 +00:00
Use integer ordering for part quantity
This commit is contained in:
@ -160,7 +160,7 @@ class OrderParts(AjaxView):
|
||||
|
||||
ctx = {}
|
||||
|
||||
ctx['parts'] = sorted(self.parts, key=lambda part: part.order_quantity, reverse=True)
|
||||
ctx['parts'] = sorted(self.parts, key=lambda part: int(part.order_quantity), reverse=True)
|
||||
|
||||
return ctx
|
||||
|
||||
|
Reference in New Issue
Block a user