* feat: Default Dashboard for Healthcare Workspace * fix: patch * Update add_healthcare_dashboard.py * fix: failing patch test Co-authored-by: Nabin Hait <nabinhait@gmail.com> Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com>
11 lines
354 B
Python
11 lines
354 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("desk", "doctype", "patient_appointment")
|
|
add_dashboards()
|