Skip to content

Commit

Permalink
fix: handle loan_repayment's posting_date datetime in bank_clearance_…
Browse files Browse the repository at this point in the history
…summary report (#36004)
  • Loading branch information
anandbaburajan committed Jul 4, 2023
1 parent dfd4ef1 commit 937e1fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,5 +152,5 @@ def get_entries(filters):

return sorted(
journal_entries + payment_entries + loan_disbursements + loan_repayments,
key=lambda k: k[2] or getdate(nowdate()),
key=lambda k: k[2].strftime("%H%M%S") or getdate(nowdate()),
)

0 comments on commit 937e1fb

Please sign in to comment.