Fixed bad method call
This commit is contained in:
parent
88b7b29000
commit
54fa31f988
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ class Orders:
|
||||||
unsettled_orders = []
|
unsettled_orders = []
|
||||||
|
|
||||||
for order in self:
|
for order in self:
|
||||||
if not order.is_settled_um():
|
if not order.is_settled_with_um():
|
||||||
unsettled_orders.append(order)
|
unsettled_orders.append(order)
|
||||||
|
|
||||||
return Orders(unsettled_orders)
|
return Orders(unsettled_orders)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue