blob: 762f48a52efda1ab706d78a5387f313f033f0049 [file] [log] [blame]
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +05301# coding=utf-8
2
Anand Doshid57e7932015-02-24 12:24:53 +05303from __future__ import unicode_literals
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05304from frappe import _
Rushabh Mehta22ababb2014-02-07 18:12:43 +05305
Nabin Haite6085392014-05-16 19:56:06 +05306def get_data():
Rushabh Mehta1bf440b2016-01-14 18:14:50 +05307 return [
8 {
Rushabh Mehta0e2dd852016-04-13 17:21:57 +05309 "module_name": "Item",
10 "_doctype": "Item",
11 "color": "#f39c12",
12 "icon": "octicon octicon-package",
13 "type": "link",
14 "link": "List/Item"
15 },
16 {
17 "module_name": "Customer",
18 "_doctype": "Customer",
19 "color": "#1abc9c",
20 "icon": "octicon octicon-tag",
21 "type": "link",
22 "link": "List/Customer"
23 },
24 {
25 "module_name": "Supplier",
26 "_doctype": "Supplier",
27 "color": "#c0392b",
28 "icon": "octicon octicon-briefcase",
29 "type": "link",
30 "link": "List/Supplier"
31 },
32 {
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053033 "_doctype": "Employee",
34 "module_name": "Employee",
35 "color": "#2ecc71",
36 "icon": "octicon octicon-organization",
37 "type": "link",
38 "link": "List/Employee"
39 },
40 {
Suraj Shettyb0a84f02018-12-20 20:12:37 +053041 "module_name": "Projects",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053042 "color": "#8e44ad",
43 "icon": "octicon octicon-rocket",
Suraj Shettyb0a84f02018-12-20 20:12:37 +053044 "type": "module",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053045 },
46 {
47 "module_name": "Issue",
48 "color": "#2c3e50",
49 "icon": "octicon octicon-issue-opened",
50 "_doctype": "Issue",
51 "type": "link",
52 "link": "List/Issue"
53 },
54 {
55 "module_name": "Lead",
56 "icon": "octicon octicon-broadcast",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053057 "_doctype": "Lead",
58 "type": "link",
59 "link": "List/Lead"
60 },
Rushabh Mehta02772442016-04-20 18:45:46 +053061 {
Rushabh Mehta769dda02016-09-15 15:15:45 +053062 "module_name": "Profit and Loss Statement",
Rushabh Mehta02772442016-04-20 18:45:46 +053063 "_doctype": "Account",
64 "color": "#3498db",
65 "icon": "octicon octicon-repo",
66 "type": "link",
67 "link": "query-report/Profit and Loss Statement"
68 },
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053069
70 # old
71 {
Suraj Shetty242b16f2018-12-24 15:47:23 +053072 "label": _("Accounting"),
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053073 "module_name": "Accounts",
Nabin Haite6085392014-05-16 19:56:06 +053074 "color": "#3498db",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053075 "icon": "octicon octicon-repo",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053076 "type": "module",
77 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +053078 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053079 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053080 "module_name": "Stock",
81 "color": "#f39c12",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053082 "icon": "octicon octicon-package",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053083 "type": "module",
84 "hidden": 1
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053085 },
86 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053087 "module_name": "CRM",
88 "color": "#EF4DB6",
89 "icon": "octicon octicon-broadcast",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053090 "type": "module",
91 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053092 },
93 {
94 "module_name": "Selling",
95 "color": "#1abc9c",
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053096 "icon": "octicon octicon-tag",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053097 "type": "module",
98 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053099 },
100 {
101 "module_name": "Buying",
Nabin Haite6085392014-05-16 19:56:06 +0530102 "color": "#c0392b",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530103 "icon": "octicon octicon-briefcase",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530104 "type": "module",
105 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530106 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530107 {
108 "module_name": "HR",
Nabin Haite6085392014-05-16 19:56:06 +0530109 "color": "#2ecc71",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530110 "icon": "octicon octicon-organization",
Nabin Haite6085392014-05-16 19:56:06 +0530111 "label": _("Human Resources"),
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530112 "type": "module",
113 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530114 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530115 {
116 "module_name": "Manufacturing",
Nabin Haite6085392014-05-16 19:56:06 +0530117 "color": "#7f8c8d",
Rushabh Mehtaff582612015-01-02 14:40:48 +0530118 "icon": "octicon octicon-tools",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530119 "type": "module",
120 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530121 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530122 {
123 "module_name": "POS",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530124 "color": "#589494",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530125 "icon": "octicon octicon-credit-card",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530126 "type": "page",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530127 "link": "pos",
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530128 "label": _("POS")
Rushabh Mehta72e17192014-08-08 15:30:49 +0530129 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530130 {
Prateeksha Singh04c4ce32017-12-20 10:51:25 +0530131 "module_name": "Leaderboard",
132 "color": "#589494",
133 "icon": "octicon octicon-graph",
134 "type": "page",
135 "link": "leaderboard",
136 "label": _("Leaderboard")
137 },
138 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530139 "module_name": "Support",
Nabin Haite6085392014-05-16 19:56:06 +0530140 "color": "#2c3e50",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530141 "icon": "octicon octicon-issue-opened",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530142 "type": "module",
143 "hidden": 1
Rushabh Mehta67712402015-05-25 18:30:53 +0530144 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530145 {
Suraj Shetty89625b62018-12-21 11:04:32 +0530146 "module_name": "Help",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530147 "color": "#FF888B",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530148 "icon": "octicon octicon-device-camera-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530149 "type": "module",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530150 "is_help": True,
Suraj Shetty89625b62018-12-21 11:04:32 +0530151 "label": _("Help"),
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530152 "hidden": 1
Kanchan Chauhanfb3eb132016-06-29 15:04:08 +0530153 },
154 {
155 "module_name": "Maintenance",
156 "color": "#FF888B",
157 "icon": "octicon octicon-tools",
158 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530159 "label": _("Maintenance"),
160 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530161 },
162 {
163 "module_name": "Student",
164 "color": "#c0392b",
165 "icon": "octicon octicon-person",
166 "label": _("Student"),
167 "link": "List/Student",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530168 "_doctype": "Student",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530169 "type": "list",
170 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530171 },
172 {
173 "module_name": "Student Group",
174 "color": "#d59919",
175 "icon": "octicon octicon-organization",
176 "label": _("Student Group"),
177 "link": "List/Student Group",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530178 "_doctype": "Student Group",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530179 "type": "list",
180 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530181 },
182 {
183 "module_name": "Course Schedule",
184 "color": "#fd784f",
185 "icon": "octicon octicon-calendar",
186 "label": _("Course Schedule"),
Manas Solanki1fa99252018-03-07 12:08:52 +0530187 "link": "List/Course Schedule/Calendar",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530188 "_doctype": "Course Schedule",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530189 "type": "list",
190 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530191 },
192 {
Manas Solanki966f1412017-11-23 15:22:10 +0530193 "module_name": "Student Attendance Tool",
194 "color": "#C0392B",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530195 "icon": "octicon octicon-checklist",
Manas Solanki966f1412017-11-23 15:22:10 +0530196 "label": _("Student Attendance Tool"),
197 "link": "List/Student Attendance Tool",
198 "_doctype": "Student Attendance Tool",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530199 "type": "list",
200 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530201 },
202 {
203 "module_name": "Course",
204 "color": "#8e44ad",
205 "icon": "octicon octicon-book",
206 "label": _("Course"),
207 "link": "List/Course",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530208 "_doctype": "Course",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530209 "type": "list",
210 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530211 },
212 {
213 "module_name": "Program",
214 "color": "#9b59b6",
215 "icon": "octicon octicon-repo",
216 "label": _("Program"),
217 "link": "List/Program",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530218 "_doctype": "Program",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530219 "type": "list",
220 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530221 },
222 {
223 "module_name": "Student Applicant",
224 "color": "#4d927f",
225 "icon": "octicon octicon-clippy",
226 "label": _("Student Applicant"),
227 "link": "List/Student Applicant",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530228 "_doctype": "Student Applicant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530229 "type": "list",
230 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530231 },
232 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530233 "module_name": "Fees",
234 "color": "#83C21E",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530235 "icon": "fa fa-money",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530236 "label": _("Fees"),
237 "link": "List/Fees",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530238 "_doctype": "Fees",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530239 "type": "list",
240 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530241 },
242 {
243 "module_name": "Instructor",
244 "color": "#a99e4c",
245 "icon": "octicon octicon-broadcast",
246 "label": _("Instructor"),
247 "link": "List/Instructor",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530248 "_doctype": "Instructor",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530249 "type": "list",
250 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530251 },
252 {
253 "module_name": "Room",
254 "color": "#f22683",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530255 "icon": "fa fa-map-marker",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530256 "label": _("Room"),
257 "link": "List/Room",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530258 "_doctype": "Room",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530259 "type": "list",
260 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530261 },
262 {
Manas Solanki966f1412017-11-23 15:22:10 +0530263 "module_name": "Education",
264 "color": "#428B46",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530265 "icon": "octicon octicon-mortar-board",
266 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530267 "label": _("Education"),
268 "hidden": 1
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530269 },
system194e195d92018-01-30 19:18:24 +1100270 {
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530271 "module_name": "Healthcare",
272 "color": "#FF888B",
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530273 "icon": "fa fa-heartbeat",
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530274 "type": "module",
Faris Ansarifd345f82017-10-05 11:17:30 +0530275 "label": _("Healthcare"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530276 "hidden": 1
Faris Ansarifd345f82017-10-05 11:17:30 +0530277 },
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530278 {
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530279 "module_name": "Patient",
280 "color": "#6BE273",
281 "icon": "fa fa-user",
282 "doctype": "Patient",
283 "type": "link",
system194e195d92018-01-30 19:18:24 +1100284 "link": "List/Patient",
285 "label": _("Patient"),
286 "hidden": 1
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530287 },
288 {
Jamsheer14c6ab02018-10-10 14:44:36 +0530289 "module_name": "Healthcare Practitioner",
290 "color": "#2ecc71",
291 "icon": "fa fa-user-md",
292 "doctype": "Healthcare Practitioner",
293 "type": "link",
294 "link": "List/Healthcare Practitioner",
295 "label": _("Healthcare Practitioner"),
296 "hidden": 1
297 },
298 {
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530299 "module_name": "Patient Appointment",
300 "color": "#934F92",
301 "icon": "fa fa-calendar-plus-o",
302 "doctype": "Patient Appointment",
303 "type": "link",
system194e195d92018-01-30 19:18:24 +1100304 "link": "List/Patient Appointment",
305 "label": _("Patient Appointment"),
306 "hidden": 1
307 },
308 {
Jamsheerf9269112018-07-16 18:08:53 +0530309 "module_name": "Patient Encounter",
system194e195d92018-01-30 19:18:24 +1100310 "color": "#2ecc71",
311 "icon": "fa fa-stethoscope",
Jamsheerf9269112018-07-16 18:08:53 +0530312 "doctype": "Patient Encounter",
system194e195d92018-01-30 19:18:24 +1100313 "type": "link",
Jamsheerf9269112018-07-16 18:08:53 +0530314 "link": "List/Patient Encounter",
315 "label": _("Patient Encounter"),
system194e195d92018-01-30 19:18:24 +1100316 "hidden": 1
317 },
318 {
319 "module_name": "Lab Test",
320 "color": "#7578f6",
321 "icon": "octicon octicon-beaker",
322 "doctype": "Lab Test",
323 "type": "list",
324 "link": "List/Lab Test",
325 "label": _("Lab Test"),
326 "hidden": 1
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530327 },
Jamsheer14c6ab02018-10-10 14:44:36 +0530328 {
329 "module_name": "Vital Signs",
330 "color": "#2ecc71",
331 "icon": "fa fa-thermometer-empty",
332 "doctype": "Vital Signs",
333 "type": "list",
334 "link": "List/Vital Signs",
335 "label": _("Vital Signs"),
336 "hidden": 1
337 },
338 {
339 "module_name": "Clinical Procedure",
340 "color": "#FF888B",
341 "icon": "fa fa-medkit",
342 "doctype": "Clinical Procedure",
343 "type": "list",
344 "link": "List/Clinical Procedure",
345 "label": _("Clinical Procedure"),
346 "hidden": 1
347 },
348 {
349 "module_name": "Inpatient Record",
350 "color": "#7578f6",
351 "icon": "fa fa-list-alt",
352 "doctype": "Inpatient Record",
353 "type": "list",
354 "link": "List/Inpatient Record",
355 "label": _("Inpatient Record"),
356 "hidden": 1
357 },
Faris Ansarifd345f82017-10-05 11:17:30 +0530358 {
Prateeksha Singh5d227c92018-06-28 09:59:46 +0530359 "module_name": "Hub",
360 "color": "#009248",
361 "icon": "/assets/erpnext/images/hub_logo.svg",
362 "type": "page",
363 "link": "Hub/Item",
364 "label": _("Hub")
365 },
366 {
Manas Solanki2bca5a92017-12-18 13:55:30 +0530367 "module_name": "Data Import",
368 "color": "#FFF168",
369 "reverse": 1,
370 "doctype": "Data Import",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530371 "icon": "octicon octicon-cloud-upload",
Manas Solanki2bca5a92017-12-18 13:55:30 +0530372 "label": _("Data Import"),
373 "link": "List/Data Import",
374 "type": "list"
Faris Ansari367b90e2017-09-29 15:17:48 +0530375 },
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530376 {
377 "module_name": "Restaurant",
378 "color": "#EA81E8",
379 "icon": "🍔",
380 "_doctype": "Restaurant",
Shreya Shah77de8dc2018-06-19 10:43:08 +0530381 "type": "module",
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530382 "link": "List/Restaurant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530383 "label": _("Restaurant"),
384 "hidden": 1
385 },
386 {
Revant Nandgaonkar2dee8fc2018-02-12 11:57:12 +0530387 "module_name": "Hotels",
388 "color": "#EA81E8",
389 "icon": "fa fa-bed",
390 "type": "module",
391 "label": _("Hotels"),
392 "hidden": 1
393 },
394 {
Ameya Shenoy5c623682017-12-06 18:36:27 +0530395 "module_name": "Agriculture",
396 "color": "#8BC34A",
397 "icon": "octicon octicon-globe",
398 "type": "module",
399 "label": _("Agriculture"),
400 "hidden": 1
401 },
402 {
403 "module_name": "Crop",
404 "_doctype": "Crop",
405 "label": _("Crop"),
406 "color": "#8BC34A",
407 "icon": "fa fa-tree",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530408 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530409 "link": "List/Crop",
410 "hidden": 1
411 },
412 {
413 "module_name": "Crop Cycle",
414 "_doctype": "Crop Cycle",
415 "label": _("Crop Cycle"),
416 "color": "#8BC34A",
417 "icon": "fa fa-circle-o-notch",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530418 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530419 "link": "List/Crop Cycle",
420 "hidden": 1
421 },
422 {
423 "module_name": "Fertilizer",
424 "_doctype": "Fertilizer",
425 "label": _("Fertilizer"),
426 "color": "#8BC34A",
427 "icon": "fa fa-leaf",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530428 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530429 "link": "List/Fertilizer",
430 "hidden": 1
431 },
432 {
Alchezdf1eae82018-07-13 12:50:04 +0530433 "module_name": "Location",
434 "_doctype": "Location",
435 "label": _("Location"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530436 "color": "#8BC34A",
437 "icon": "fa fa-map",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530438 "type": "list",
Alchezdf1eae82018-07-13 12:50:04 +0530439 "link": "List/Location",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530440 "hidden": 1
441 },
442 {
443 "module_name": "Disease",
444 "_doctype": "Disease",
445 "label": _("Disease"),
446 "color": "#8BC34A",
447 "icon": "octicon octicon-bug",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530448 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530449 "link": "List/Disease",
450 "hidden": 1
451 },
452 {
453 "module_name": "Plant Analysis",
454 "_doctype": "Plant Analysis",
455 "label": _("Plant Analysis"),
456 "color": "#8BC34A",
457 "icon": "fa fa-pagelines",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530458 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530459 "link": "List/Plant Analysis",
460 "hidden": 1
461 },
462 {
463 "module_name": "Soil Analysis",
464 "_doctype": "Soil Analysis",
465 "label": _("Soil Analysis"),
466 "color": "#8BC34A",
467 "icon": "fa fa-flask",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530468 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530469 "link": "List/Soil Analysis",
470 "hidden": 1
471 },
472 {
473 "module_name": "Soil Texture",
474 "_doctype": "Soil Texture",
475 "label": _("Soil Texture"),
476 "color": "#8BC34A",
477 "icon": "octicon octicon-beaker",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530478 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530479 "link": "List/Soil Texture",
480 "hidden": 1
481 },
482 {
483 "module_name": "Water Analysis",
484 "_doctype": "Water Analysis",
485 "label": _("Water Analysis"),
486 "color": "#8BC34A",
487 "icon": "fa fa-tint",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530488 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530489 "link": "List/Water Analysis",
490 "hidden": 1
491 },
492 {
493 "module_name": "Weather",
494 "_doctype": "Weather",
495 "label": _("Weather"),
496 "color": "#8BC34A",
497 "icon": "fa fa-sun-o",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530498 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530499 "link": "List/Weather",
500 "hidden": 1
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530501 },
502 {
503 "module_name": "Assets",
504 "color": "#4286f4",
505 "icon": "octicon octicon-database",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530506 "hidden": 1,
507 "label": _("Assets"),
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530508 "type": "module"
509 },
Vishalca614532017-09-11 15:13:16 +0530510 {
Vishala68234d2017-11-22 23:11:12 +0530511 "module_name": "Grant Application",
512 "color": "#E9AB17",
513 "icon": "fa fa-gift",
514 "_doctype": "Grant Application",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530515 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530516 "link": "List/Grant Application",
Vishal74116172017-12-05 15:43:19 +0530517 "label": _("Grant Application"),
518 "hidden": 1
519
Vishala68234d2017-11-22 23:11:12 +0530520 },
521 {
522 "module_name": "Donor",
523 "color": "#7F5A58",
524 "icon": "fa fa-tint",
525 "_doctype": "Donor",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530526 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530527 "link": "List/Donor",
Vishal74116172017-12-05 15:43:19 +0530528 "label": _("Donor"),
529 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530530 },
531 {
532 "module_name": "Volunteer",
533 "color": "#7E587E",
534 "icon": "fa fa-angellist",
535 "_doctype": "Volunteer",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530536 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530537 "link": "List/Volunteer",
Vishal74116172017-12-05 15:43:19 +0530538 "label": _("Volunteer"),
539 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530540 },
541 {
542 "module_name": "Member",
543 "color": "#79BAEC",
544 "icon": "fa fa-users",
545 "_doctype": "Member",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530546 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530547 "link": "List/Member",
Vishal74116172017-12-05 15:43:19 +0530548 "label": _("Member"),
549 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530550 },
551 {
552 "module_name": "Chapter",
553 "color": "#3B9C9C",
554 "icon": "fa fa-handshake-o",
555 "_doctype": "Chapter",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530556 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530557 "link": "List/Chapter",
Vishal74116172017-12-05 15:43:19 +0530558 "label": _("Chapter"),
559 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530560 },
561 {
Vishalca614532017-09-11 15:13:16 +0530562 "module_name": "Non Profit",
563 "color": "#DE2B37",
564 "icon": "octicon octicon-heart",
565 "type": "module",
Vishal74116172017-12-05 15:43:19 +0530566 "label": _("Non Profit"),
567 "hidden": 1
Himanshu0209ef02018-12-25 17:42:31 +0530568 },
569 {
570 "module_name": "Quality Management",
Himanshucccc78e2019-01-14 14:36:54 +0530571 "color": "#1abc9c",
572 "icon": "fa fa-check-square-o",
Himanshu0209ef02018-12-25 17:42:31 +0530573 "type": "module",
Himanshucccc78e2019-01-14 14:36:54 +0530574 "label": _("Quality")
Vishalca614532017-09-11 15:13:16 +0530575 }
Himanshucccc78e2019-01-14 14:36:54 +0530576 ]