From f3eda02972cdfa6867f560cddb16407e6cf3364f Mon Sep 17 00:00:00 2001 From: Rehan Ansari Date: Tue, 4 Nov 2025 22:08:03 +0530 Subject: [PATCH] feat: add asset name column --- .../asset_depreciation_ledger/asset_depreciation_ledger.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py b/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py index b33d71dff50..ed132d942ba 100644 --- a/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +++ b/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py @@ -119,6 +119,7 @@ def get_assets_details(assets): fields = [ "name as asset", + "asset_name", "net_purchase_amount", "opening_accumulated_depreciation", "asset_category", @@ -143,6 +144,12 @@ def get_columns(): "options": "Asset", "width": 120, }, + { + "label": _("Asset Name"), + "fieldname": "asset_name", + "fieldtype": "Data", + "width": 140, + }, { "label": _("Depreciation Date"), "fieldname": "depreciation_date",