Fixed the model query so that the brought-forward balance in the ledger will not be None in the accounting application.
This commit is contained in:
parent
ed0c29f360
commit
a03c701a31
@ -368,9 +368,9 @@ def ledger(request, subject_code, period_spec):
|
|||||||
balance = Record.objects.filter(
|
balance = Record.objects.filter(
|
||||||
transaction__date__lt=period.start,
|
transaction__date__lt=period.start,
|
||||||
subject__code__startswith=current_subject.code)\
|
subject__code__startswith=current_subject.code)\
|
||||||
.aggregate(balance=Sum(Case(When(
|
.aggregate(balance=Coalesce(Sum(Case(When(
|
||||||
is_credit=True, then=-1),
|
is_credit=True, then=-1),
|
||||||
default=1) * F("amount")))["balance"]
|
default=1) * F("amount")), 0))["balance"]
|
||||||
record_brought_forward = Record(
|
record_brought_forward = Record(
|
||||||
transaction=Transaction(date=period.start),
|
transaction=Transaction(date=period.start),
|
||||||
subject=current_subject,
|
subject=current_subject,
|
||||||
|
Loading…
Reference in New Issue
Block a user