diff --git a/erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json b/erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json index 32aa85702e0..780a1d5da15 100644 --- a/erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +++ b/erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json @@ -6,7 +6,8 @@ "engine": "InnoDB", "field_order": [ "processing_date", - "status" + "status", + "closing_balance" ], "fields": [ { @@ -20,13 +21,18 @@ "fieldtype": "Select", "label": "Status", "options": "Queued\nRunning\nCompleted" + }, + { + "fieldname": "closing_balance", + "fieldtype": "JSON", + "label": "Closing Balance" } ], "grid_page_length": 50, "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2025-10-01 16:00:02.221411", + "modified": "2025-10-08 10:19:29.928526", "modified_by": "Administrator", "module": "Accounts", "name": "Process Period Closing Voucher Detail", diff --git a/erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.py b/erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.py index 445451ee7c2..3ec46f1b181 100644 --- a/erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.py +++ b/erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.py @@ -14,6 +14,7 @@ class ProcessPeriodClosingVoucherDetail(Document): if TYPE_CHECKING: from frappe.types import DF + closing_balance: DF.JSON | None parent: DF.Data parentfield: DF.Data parenttype: DF.Data