mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-15 08:17:15 +00:00
fix: IndexError in Asset Depreciation Ledger when query result is empty
(cherry picked from commit 7c393e5aa0)
This commit is contained in:
@@ -71,6 +71,7 @@ def get_data(filters):
|
|||||||
|
|
||||||
assets = [d.against_voucher for d in gl_entries]
|
assets = [d.against_voucher for d in gl_entries]
|
||||||
assets_details = get_assets_details(assets)
|
assets_details = get_assets_details(assets)
|
||||||
|
print(gl_entries)
|
||||||
|
|
||||||
for d in gl_entries:
|
for d in gl_entries:
|
||||||
asset_data = assets_details.get(d.against_voucher)
|
asset_data = assets_details.get(d.against_voucher)
|
||||||
@@ -89,7 +90,9 @@ def get_data(filters):
|
|||||||
& (DepreciationSchedule.schedule_date == d.posting_date)
|
& (DepreciationSchedule.schedule_date == d.posting_date)
|
||||||
)
|
)
|
||||||
).run(as_dict=True)
|
).run(as_dict=True)
|
||||||
asset_data.accumulated_depreciation_amount = query[0]["accumulated_depreciation_amount"]
|
asset_data.accumulated_depreciation_amount = (
|
||||||
|
query[0]["accumulated_depreciation_amount"] if query else 0
|
||||||
|
)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
asset_data.accumulated_depreciation_amount += d.debit
|
asset_data.accumulated_depreciation_amount += d.debit
|
||||||
|
|||||||
Reference in New Issue
Block a user