Fixed the _find_order_holes() utility to include the check for the minimal order in the accounting application.
This commit is contained in:
parent
e0e2815c34
commit
090f3dc3a5
@ -20,7 +20,7 @@
|
|||||||
"""
|
"""
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from django.db.models import Sum, Case, When, F, Q, Count, Max
|
from django.db.models import Sum, Case, When, F, Q, Count, Max, Min
|
||||||
from django.db.models.functions import TruncMonth, Coalesce
|
from django.db.models.functions import TruncMonth, Coalesce
|
||||||
from django.http import HttpResponseRedirect, Http404
|
from django.http import HttpResponseRedirect, Http404
|
||||||
from django.shortcuts import render
|
from django.shortcuts import render
|
||||||
@ -911,8 +911,8 @@ def _find_order_holes(records):
|
|||||||
"""
|
"""
|
||||||
holes = [x["date"] for x in Transaction.objects
|
holes = [x["date"] for x in Transaction.objects
|
||||||
.values("date")
|
.values("date")
|
||||||
.annotate(count=Count("ord"), max=Max("ord"))
|
.annotate(count=Count("ord"), max=Max("ord"), min=Min("ord"))
|
||||||
.filter(~Q(count=F("max")))]\
|
.filter(~(Q(max=F("count")) & Q(min=1)))]\
|
||||||
+ [x["date"] for x in Transaction.objects
|
+ [x["date"] for x in Transaction.objects
|
||||||
.values("date", "ord")
|
.values("date", "ord")
|
||||||
.annotate(count=Count("sn"))
|
.annotate(count=Count("sn"))
|
||||||
|
Loading…
Reference in New Issue
Block a user