From 426468183f4eced565d9382296313e157360fa9a Mon Sep 17 00:00:00 2001 From: Prateeksha Singh Date: Tue, 12 Feb 2019 13:08:21 +0530 Subject: [PATCH] fix(getting_started): main domain specific masters --- erpnext/config/getting_started.py | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/erpnext/config/getting_started.py b/erpnext/config/getting_started.py index e27ac12843..19b71d2168 100644 --- a/erpnext/config/getting_started.py +++ b/erpnext/config/getting_started.py @@ -110,12 +110,6 @@ def get_data(): "description": _("Database of potential customers."), "onboard": 1, }, - { - "type": "doctype", - "name": "Opportunity", - "description": _("Potential opportunities for selling."), - "onboard": 1, - }, { "type": "doctype", "label": _("Customer Group"), @@ -174,7 +168,12 @@ def get_data(): }, { "type": "doctype", - "name": "Student Group", + "name": "Instructor", + "onboard": 1, + }, + { + "type": "doctype", + "name": "Room", "onboard": 1, }, ] @@ -185,20 +184,20 @@ def get_data(): "items": [ { "type": "doctype", - "name": "Patient Appointment", - "label": _("Patient Appointment"), + "name": "Patient", + "label": _("Patient"), "onboard": 1, }, { "type": "doctype", - "name": "Clinical Procedure", - "label": _("Clinical Procedure"), + "name": "Physician", + "label": _("Physician"), "onboard": 1, }, { "type": "doctype", - "name": "Inpatient Record", - "label": _("Inpatient Record"), + "name": "Diagnosis", + "label": _("Diagnosis"), "onboard": 1, } ]