Added the output_field when calculating the balance in the cash report.
This commit is contained in:
parent
fc6f1fd18a
commit
df6c961dc3
@ -28,7 +28,7 @@ from django.conf import settings
|
|||||||
from django.contrib import messages
|
from django.contrib import messages
|
||||||
from django.db import transaction
|
from django.db import transaction
|
||||||
from django.db.models import Sum, Case, When, F, Q, Count, BooleanField, \
|
from django.db.models import Sum, Case, When, F, Q, Count, BooleanField, \
|
||||||
ExpressionWrapper, Exists, OuterRef, Value, CharField
|
ExpressionWrapper, Exists, OuterRef, Value, CharField, DecimalField
|
||||||
from django.db.models.functions import TruncMonth, Coalesce, Left, StrIndex
|
from django.db.models.functions import TruncMonth, Coalesce, Left, StrIndex
|
||||||
from django.http import JsonResponse, HttpResponseRedirect, Http404, \
|
from django.http import JsonResponse, HttpResponseRedirect, Http404, \
|
||||||
HttpRequest, HttpResponse
|
HttpRequest, HttpResponse
|
||||||
@ -124,7 +124,8 @@ def cash(request: HttpRequest, account: Account,
|
|||||||
.aggregate(
|
.aggregate(
|
||||||
balance=Coalesce(Sum(Case(When(
|
balance=Coalesce(Sum(Case(When(
|
||||||
is_credit=True, then=-1),
|
is_credit=True, then=-1),
|
||||||
default=1) * F("amount")), 0))["balance"]
|
default=1) * F("amount"), output_field=DecimalField()),
|
||||||
|
0, output_field=DecimalField()))["balance"]
|
||||||
balance = balance_before
|
balance = balance_before
|
||||||
for record in records:
|
for record in records:
|
||||||
sign = 1 if record.is_credit else -1
|
sign = 1 if record.is_credit else -1
|
||||||
|
Loading…
Reference in New Issue
Block a user