From c48647100fea5f1584b045d27d6bfe907e3894c4 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 (cherry picked from commit f3eda02972cdfa6867f560cddb16407e6cf3364f) # Conflicts: # erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py --- .../asset_depreciation_ledger.py | 11 +++++++++++ 1 file changed, 11 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 a21103c719d..891a06d4a0c 100644 --- a/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py +++ b/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py @@ -119,7 +119,12 @@ def get_assets_details(assets): fields = [ "name as asset", +<<<<<<< HEAD "gross_purchase_amount", +======= + "asset_name", + "net_purchase_amount", +>>>>>>> f3eda02972 (feat: add asset name column) "opening_accumulated_depreciation", "asset_category", "status", @@ -143,6 +148,12 @@ def get_columns(): "options": "Asset", "width": 120, }, + { + "label": _("Asset Name"), + "fieldname": "asset_name", + "fieldtype": "Data", + "width": 140, + }, { "label": _("Depreciation Date"), "fieldname": "depreciation_date",