forked from DGNum/gestioCOF
Merge branch 'Aufinal/single_checkout' into 'master'
Fix "Checkout is not iterable" error See merge request klub-dev-ens/gestioCOF!483
This commit is contained in:
commit
63eeb5b7a9
1 changed files with 1 additions and 1 deletions
|
@ -1476,7 +1476,7 @@ def history_json(request):
|
|||
opegroups = opegroups.filter(at__lt=end)
|
||||
transfergroups = transfergroups.filter(at__lt=end)
|
||||
if checkout:
|
||||
opegroups = opegroups.filter(checkout__in=checkout)
|
||||
opegroups = opegroups.filter(checkout=checkout)
|
||||
transfergroups = TransferGroup.objects.none()
|
||||
if transfers_only:
|
||||
opegroups = OperationGroup.objects.none()
|
||||
|
|
Loading…
Reference in a new issue