Patch fixed for expense claim type
diff --git a/erpnext/patches/v7_0/setup_account_table_for_expense_claim_type_if_exists.py b/erpnext/patches/v7_0/setup_account_table_for_expense_claim_type_if_exists.py
index e566ac2..2c07e30 100644
--- a/erpnext/patches/v7_0/setup_account_table_for_expense_claim_type_if_exists.py
+++ b/erpnext/patches/v7_0/setup_account_table_for_expense_claim_type_if_exists.py
@@ -3,6 +3,7 @@
 
 def execute():
 	frappe.reload_doc("hr", "doctype", "expense_claim_type")
+	frappe.reload_doc("hr", "doctype", "expense_claim_account")
 	
 	for expense_claim_type in frappe.get_all("Expense Claim Type", fields=["name", "default_account"]):
 		if expense_claim_type.default_account: