fixing revoke
This commit is contained in:
parent
21cdcb5350
commit
289126a8a7
|
@ -285,7 +285,9 @@ def delete_from_trade(lot: Lot, ids: Set[int]):
|
||||||
for dev in devices:
|
for dev in devices:
|
||||||
# if have only one confirmation
|
# if have only one confirmation
|
||||||
# then can be revoked and deleted of the lot
|
# then can be revoked and deleted of the lot
|
||||||
if dev.trading == 'NeedConfirmation':
|
# Confirm of dev.trading mean that there are only one confirmation
|
||||||
|
# and the first user than put this device in trade is the actual g.user
|
||||||
|
if dev.trading == 'Confirm':
|
||||||
without_confirms.add(dev)
|
without_confirms.add(dev)
|
||||||
dev.reset_owner()
|
dev.reset_owner()
|
||||||
|
|
||||||
|
|
Reference in New Issue