mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-27 17:04:47 +00:00
fix: handle loan_repayment's posting_date datetime in bank_clearance_summary report (backport #36004) (#36005)
* fix: handle loan_repayment's posting_date datetime in bank_clearance_summary report (#36004)
(cherry picked from commit 937e1fb024)
# Conflicts:
# erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py
* chore: resolving conflicts
---------
Co-authored-by: Anand Baburajan <anandbaburajan@gmail.com>
This commit is contained in:
@@ -73,7 +73,7 @@ def get_entries(filters):
|
|||||||
|
|
||||||
return sorted(
|
return sorted(
|
||||||
entries,
|
entries,
|
||||||
key=lambda k: k[2] or getdate(nowdate()),
|
key=lambda k: k[2].strftime("%H%M%S") or getdate(nowdate()),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user