fix(getting_started): main domain specific masters

This commit is contained in:
Prateeksha Singh 2019-02-12 13:08:21 +05:30
parent 9adad2988d
commit 426468183f

View File

@ -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,
}
]