add Transfers to lot dropdown
This commit is contained in:
parent
985039adcd
commit
2a3b7a0900
|
@ -141,7 +141,12 @@ class LotView(View):
|
||||||
|
|
||||||
# temporary
|
# temporary
|
||||||
if lot_type == "temporary":
|
if lot_type == "temporary":
|
||||||
return query.filter(Lot.trade == None).filter(Lot.transfer == None)
|
return query.filter(Lot.trade == None).filter(
|
||||||
|
or_(
|
||||||
|
Lot.transfer == None,
|
||||||
|
Transfer.date == None
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
if lot_type == "incoming":
|
if lot_type == "incoming":
|
||||||
return query.filter(
|
return query.filter(
|
||||||
|
|
Reference in New Issue