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."), "description": _("Database of potential customers."),
"onboard": 1, "onboard": 1,
}, },
{
"type": "doctype",
"name": "Opportunity",
"description": _("Potential opportunities for selling."),
"onboard": 1,
},
{ {
"type": "doctype", "type": "doctype",
"label": _("Customer Group"), "label": _("Customer Group"),
@@ -174,7 +168,12 @@ def get_data():
}, },
{ {
"type": "doctype", "type": "doctype",
"name": "Student Group", "name": "Instructor",
"onboard": 1,
},
{
"type": "doctype",
"name": "Room",
"onboard": 1, "onboard": 1,
}, },
] ]
@@ -185,20 +184,20 @@ def get_data():
"items": [ "items": [
{ {
"type": "doctype", "type": "doctype",
"name": "Patient Appointment", "name": "Patient",
"label": _("Patient Appointment"), "label": _("Patient"),
"onboard": 1, "onboard": 1,
}, },
{ {
"type": "doctype", "type": "doctype",
"name": "Clinical Procedure", "name": "Physician",
"label": _("Clinical Procedure"), "label": _("Physician"),
"onboard": 1, "onboard": 1,
}, },
{ {
"type": "doctype", "type": "doctype",
"name": "Inpatient Record", "name": "Diagnosis",
"label": _("Inpatient Record"), "label": _("Diagnosis"),
"onboard": 1, "onboard": 1,
} }
] ]