您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

9 行
259 B

  1. import frappe, json
  2. def execute():
  3. installed = frappe.get_installed_apps()
  4. if "webnotes" in installed:
  5. installed.remove("webnotes")
  6. installed = ["frappe"] + installed
  7. frappe.conn.set_global("installed_apps", json.dumps(installed))
  8. frappe.clear_cache()