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",