diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 1d1dca94bf..f5b5ca359f 100644 --- a/erpnext/__init__.py +++ b/erpnext/__init__.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals import frappe -__version__ = '7.0.22' +__version__ = '7.0.23' def get_default_company(user=None): '''Get default company for user''' diff --git a/erpnext/patches/v7_0/migrate_schools_to_erpnext.py b/erpnext/patches/v7_0/migrate_schools_to_erpnext.py index 9933743859..04c65fa0ec 100644 --- a/erpnext/patches/v7_0/migrate_schools_to_erpnext.py +++ b/erpnext/patches/v7_0/migrate_schools_to_erpnext.py @@ -27,6 +27,6 @@ def execute(): domainify.setup_sidebar_items(domainify.get_domain('Manufacturing')) def reload_doctypes_for_schools_icons(): - for name in ('student', 'student_group', 'course_schedule', 'student_attendance', + for name in ('student', 'student_group', 'course_schedule', 'student_attendance', 'room', 'program_enrollment', 'course', 'program', 'student_applicant', 'examination', 'fees', 'instructor', 'announcement'): frappe.reload_doc('schools', 'doctype', name)