blob: f1339a7b113490d1e6739bf09d5214b9d8334244 [file] [log] [blame]
Rushabh Mehtaf0569742017-09-13 12:52:30 +05301from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5
6 return [
7 {
8 "label": _("Consultation"),
9 "icon": "icon-star",
10 "items": [
11 {
12 "type": "doctype",
13 "name": "Patient Appointment",
Jamsheerc90195d2017-12-29 14:32:13 +053014 "label": _("Patient Appointment"),
Rushabh Mehtaf0569742017-09-13 12:52:30 +053015 },
16 {
17 "type": "doctype",
18 "name": "Consultation",
19 "label": _("Consultation"),
20 },
21 {
22 "type": "doctype",
23 "name": "Vital Signs",
24 "label": _("Vital Signs"),
25 "description": _("Record Patient Vitals"),
26 },
27 {
28 "type": "page",
29 "name": "medical_record",
30 "label": _("Patient Medical Record"),
31 },
32 {
33 "type": "page",
34 "name": "appointment-analytic",
35 "label": _("Appointment Analytics"),
Jamsheer0cde6ae2018-05-16 10:54:00 +053036 },
37 {
38 "type": "doctype",
39 "name": "Clinical Procedure",
40 "label": _("Clinical Procedure"),
Rushabh Mehtaf0569742017-09-13 12:52:30 +053041 }
42 ]
43 },
44 {
45 "label": _("Laboratory"),
46 "icon": "icon-list",
47 "items": [
48 {
49 "type": "doctype",
50 "name": "Lab Test",
Jamsheerc90195d2017-12-29 14:32:13 +053051 "label": _("Lab Test"),
Rushabh Mehtaf0569742017-09-13 12:52:30 +053052 },
53 {
54 "type": "doctype",
55 "name": "Sample Collection",
56 "label": _("Sample Collection"),
57 },
58 {
59 "type": "report",
60 "name": "Lab Test Report",
Jamsheerc90195d2017-12-29 14:32:13 +053061 "is_query_report": True,
62 "label": _("Lab Test Report"),
Rushabh Mehtaf0569742017-09-13 12:52:30 +053063 }
64 ]
65 },
66 {
67 "label": _("Masters"),
68 "icon": "icon-list",
69 "items": [
70 {
71 "type": "doctype",
72 "name": "Patient",
73 "label": _("Patient"),
74 },
75 {
76 "type": "doctype",
77 "name": "Physician",
Jamsheerc90195d2017-12-29 14:32:13 +053078 "label": _("Physician"),
Rushabh Mehtaf0569742017-09-13 12:52:30 +053079 },
80 {
81 "type": "doctype",
82 "name": "Physician Schedule",
83 "label": _("Physician Schedule"),
84 },
85 {
86 "type": "doctype",
87 "name": "Medical Code Standard",
88 "label": _("Medical Code Standard"),
89 },
90 {
91 "type": "doctype",
92 "name": "Medical Code",
93 "label": _("Medical Code"),
Jamsheer665b4872018-03-08 13:08:35 +053094 },
95 {
96 "type": "doctype",
Jamsheer0cde6ae2018-05-16 10:54:00 +053097 "name": "Healthcare Service Unit",
98 "label": _("Healthcare Service Unit")
Rushabh Mehtaf0569742017-09-13 12:52:30 +053099 }
100 ]
101 },
102 {
103 "label": _("Setup"),
104 "icon": "icon-cog",
105 "items": [
106 {
107 "type": "doctype",
108 "name": "Healthcare Settings",
109 "label": _("Healthcare Settings"),
110 },
111 {
112 "type": "doctype",
113 "name": "Medical Department",
Jamsheerc90195d2017-12-29 14:32:13 +0530114 "label": _("Medical Department"),
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530115 },
116 {
117 "type": "doctype",
118 "name": "Appointment Type",
Jamsheerc90195d2017-12-29 14:32:13 +0530119 "label": _("Appointment Type"),
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530120 },
121 {
122 "type": "doctype",
123 "name": "Prescription Dosage",
Jamsheerc90195d2017-12-29 14:32:13 +0530124 "label": _("Prescription Dosage")
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530125 },
126 {
127 "type": "doctype",
128 "name": "Prescription Duration",
Jamsheerc90195d2017-12-29 14:32:13 +0530129 "label": _("Prescription Duration")
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530130 },
131 {
132 "type": "doctype",
133 "name": "Complaint",
Jamsheerc90195d2017-12-29 14:32:13 +0530134 "label": _("Complaint")
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530135 },
136 {
137 "type": "doctype",
138 "name": "Diagnosis",
Jamsheerc90195d2017-12-29 14:32:13 +0530139 "label": _("Diagnosis")
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530140 },
141 {
142 "type": "doctype",
143 "name": "Lab Test Sample",
Jamsheer00c1cf02018-02-12 11:24:12 +0530144 "label": _("Lab Test Sample"),
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530145 },
146 {
147 "type": "doctype",
148 "name": "Lab Test UOM",
Jamsheer00c1cf02018-02-12 11:24:12 +0530149 "label": _("Lab Test UOM")
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530150 },
151 {
152 "type": "doctype",
153 "name": "Antibiotic",
Jamsheer00c1cf02018-02-12 11:24:12 +0530154 "label": _("Antibiotic")
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530155 },
156 {
157 "type": "doctype",
158 "name": "Sensitivity",
Jamsheer00c1cf02018-02-12 11:24:12 +0530159 "label": _("Sensitivity")
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530160 },
161 {
162 "type": "doctype",
163 "name": "Lab Test Template",
Jamsheer00c1cf02018-02-12 11:24:12 +0530164 "label": _("Lab Test Template")
Jamsheer0cde6ae2018-05-16 10:54:00 +0530165 },
166 {
167 "type": "doctype",
168 "name": "Clinical Procedure Template",
169 "label": _("Clinical Procedure Template"),
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530170 }
171 ]
172 }
173 ]