mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-30 20:46:47 +00:00
Use integer ordering for part quantity
This commit is contained in:
parent
15432fd6b7
commit
2fffd874a3
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user