11 lines
360 B
Python
11 lines
360 B
Python
# Copyright (c) 2019, Frappe and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
import frappe
|
|
from erpnext.setup.setup_wizard.operations.install_fixtures import add_dashboards
|
|
|
|
def execute():
|
|
frappe.reload_doc("desk", "doctype", "number_card_link")
|
|
frappe.reload_doc("healthcare", "doctype", "patient_appointment")
|
|
add_dashboards()
|