mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +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…
Reference in New Issue
Block a user