brotherton-erpnext/erpnext/patches/v7_0/migrate_schools_to_erpnext.py
2016-08-09 17:08:13 +05:30

28 lines
1.0 KiB
Python

from __future__ import unicode_literals
import frappe
def execute():
reload_doctypes_for_schools_icons()
frappe.reload_doc('website', 'doctype', 'portal_settings')
frappe.reload_doc('website', 'doctype', 'portal_menu_item')
frappe.reload_doc('buying', 'doctype', 'request_for_quotation')
if 'schools' in frappe.get_installed_apps():
frappe.db.sql("""delete from `tabDesktop Icon`""")
if not frappe.db.exists('Module Def', 'Schools'):
frappe.get_doc({
'doctype': 'Module Def',
'module_name': 'Schools',
'app_name': 'erpnext'
}).insert()
frappe.db.sql("""update `tabDocType` set module='Schools' where module='Academics'""")
from frappe.installer import remove_from_installed_apps
remove_from_installed_apps("schools")
def reload_doctypes_for_schools_icons():
for name in ('student', 'student_group', 'course_schedule', 'student_attendance', 'room',
'program_enrollment', 'course', 'program', 'student_applicant', 'fees',
'instructor', 'announcement'):
frappe.reload_doc('schools', 'doctype', name)