fix: modify patch
diff --git a/erpnext/patches/v14_0/set_report_in_process_SOA.py b/erpnext/patches/v14_0/set_report_in_process_SOA.py
index 1cb7e41..0f65b36 100644
--- a/erpnext/patches/v14_0/set_report_in_process_SOA.py
+++ b/erpnext/patches/v14_0/set_report_in_process_SOA.py
@@ -5,6 +5,7 @@
 
 
 def execute():
+	frappe.reload_doc("accounts", "doctype", "Process Statement of Accounts", force=True)
 	process_soa = frappe.qb.DocType("Process Statement of Accounts")
 	q = frappe.qb.update(process_soa).set(process_soa.report, "General Ledger")
 	q.run()