Patch was faling, reload doc was missing (#10072)
diff --git a/erpnext/patches/v8_4/make_scorecard_records.py b/erpnext/patches/v8_4/make_scorecard_records.py
index 37789d7..73afa27 100644
--- a/erpnext/patches/v8_4/make_scorecard_records.py
+++ b/erpnext/patches/v8_4/make_scorecard_records.py
@@ -2,8 +2,10 @@
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
+import frappe
from erpnext.buying.doctype.supplier_scorecard.supplier_scorecard import make_default_records
def execute():
-
+ frappe.reload_doc('buying', 'doctype', 'supplier_scorecard_variable')
+ frappe.reload_doc('buying', 'doctype', 'supplier_scorecard_standing')
make_default_records()
\ No newline at end of file