2016-07-19 08:47:33 +00:00
|
|
|
from __future__ import unicode_literals
|
2016-08-10 14:15:59 +00:00
|
|
|
import frappe, os
|
2016-07-19 08:47:33 +00:00
|
|
|
|
|
|
|
def execute():
|
2016-07-22 06:49:18 +00:00
|
|
|
reload_doctypes_for_schools_icons()
|
2016-07-22 06:01:31 +00:00
|
|
|
|
|
|
|
frappe.reload_doc('website', 'doctype', 'portal_settings')
|
|
|
|
frappe.reload_doc('website', 'doctype', 'portal_menu_item')
|
|
|
|
frappe.reload_doc('buying', 'doctype', 'request_for_quotation')
|
|
|
|
|
2016-07-21 10:31:59 +00:00
|
|
|
if 'schools' in frappe.get_installed_apps():
|
2016-07-21 11:11:05 +00:00
|
|
|
frappe.db.sql("""delete from `tabDesktop Icon`""")
|
2016-07-21 12:52:58 +00:00
|
|
|
if not frappe.db.exists('Module Def', 'Schools'):
|
|
|
|
frappe.get_doc({
|
|
|
|
'doctype': 'Module Def',
|
|
|
|
'module_name': 'Schools',
|
|
|
|
'app_name': 'erpnext'
|
|
|
|
}).insert()
|
2016-07-21 11:27:04 +00:00
|
|
|
frappe.db.sql("""update `tabDocType` set module='Schools' where module='Academics'""")
|
2016-07-21 10:31:59 +00:00
|
|
|
from frappe.installer import remove_from_installed_apps
|
|
|
|
remove_from_installed_apps("schools")
|
2016-07-22 06:49:18 +00:00
|
|
|
|
|
|
|
def reload_doctypes_for_schools_icons():
|
2016-08-10 14:15:59 +00:00
|
|
|
base_path = frappe.get_app_path('erpnext', 'schools', 'doctype')
|
|
|
|
for doctype in os.listdir(base_path):
|
|
|
|
if os.path.exists(os.path.join(base_path, doctype, doctype + '.json')):
|
|
|
|
frappe.reload_doc('schools', 'doctype', doctype)
|