Change criteria name of employeewise_balance_leave_report
diff --git a/erpnext/patches/employeewise_balance_leave_report.py b/erpnext/patches/employeewise_balance_leave_report.py
new file mode 100644
index 0000000..6af2364
--- /dev/null
+++ b/erpnext/patches/employeewise_balance_leave_report.py
@@ -0,0 +1,12 @@
+"""
+	This patch changes criteria name
+	of search criteria "employeewise_balance_leave_report"
+	from "Employeewise Balance Leave Report"
+	to "Employee Leave Balance Report"
+"""
+def execute():
+	from webnotes.model.doc import Document
+	d = Document('Search Criteria', 'employeewise_balance_leave_report')
+	d.criteria_name = 'Employee Leave Balance Report'
+	d.description = 'Employeewise Balance Leave Report'
+	d.save()
\ No newline at end of file