diff --git a/frappe/api/v2.py b/frappe/api/v2.py index a7afb5002c..01570ae989 100644 --- a/frappe/api/v2.py +++ b/frappe/api/v2.py @@ -170,7 +170,6 @@ def execute_doc_method(doctype: str, name: str, method: str | None = None): doc.check_permission(PERMISSION_MAP[frappe.request.method]) result = doc.run_method(method, **frappe.form_dict) - doc.reload() frappe.response.docs.append(doc.as_dict()) return result