blob: cdb2e75ac8ee317722b8e7363f3204d111f76578 [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 {
41 "module_name": "Project",
42 "_doctype": "Project",
43 "color": "#8e44ad",
44 "icon": "octicon octicon-rocket",
45 "type": "link",
46 "link": "List/Project"
47 },
48 {
49 "module_name": "Issue",
50 "color": "#2c3e50",
51 "icon": "octicon octicon-issue-opened",
52 "_doctype": "Issue",
53 "type": "link",
54 "link": "List/Issue"
55 },
56 {
57 "module_name": "Lead",
58 "icon": "octicon octicon-broadcast",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053059 "_doctype": "Lead",
60 "type": "link",
61 "link": "List/Lead"
62 },
Rushabh Mehta02772442016-04-20 18:45:46 +053063 {
Rushabh Mehta769dda02016-09-15 15:15:45 +053064 "module_name": "Profit and Loss Statement",
Rushabh Mehta02772442016-04-20 18:45:46 +053065 "_doctype": "Account",
66 "color": "#3498db",
67 "icon": "octicon octicon-repo",
68 "type": "link",
69 "link": "query-report/Profit and Loss Statement"
70 },
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053071
72 # old
73 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053074 "module_name": "Accounts",
Nabin Haite6085392014-05-16 19:56:06 +053075 "color": "#3498db",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053076 "icon": "octicon octicon-repo",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053077 "type": "module",
78 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +053079 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053080 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053081 "module_name": "Stock",
82 "color": "#f39c12",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053083 "icon": "octicon octicon-package",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053084 "type": "module",
85 "hidden": 1
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053086 },
87 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053088 "module_name": "CRM",
89 "color": "#EF4DB6",
90 "icon": "octicon octicon-broadcast",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053091 "type": "module",
92 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053093 },
94 {
95 "module_name": "Selling",
96 "color": "#1abc9c",
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053097 "icon": "octicon octicon-tag",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053098 "type": "module",
99 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530100 },
101 {
102 "module_name": "Buying",
Nabin Haite6085392014-05-16 19:56:06 +0530103 "color": "#c0392b",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530104 "icon": "octicon octicon-briefcase",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530105 "type": "module",
106 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530107 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530108 {
109 "module_name": "HR",
Nabin Haite6085392014-05-16 19:56:06 +0530110 "color": "#2ecc71",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530111 "icon": "octicon octicon-organization",
Nabin Haite6085392014-05-16 19:56:06 +0530112 "label": _("Human Resources"),
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530113 "type": "module",
114 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530115 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530116 {
117 "module_name": "Manufacturing",
Nabin Haite6085392014-05-16 19:56:06 +0530118 "color": "#7f8c8d",
Rushabh Mehtaff582612015-01-02 14:40:48 +0530119 "icon": "octicon octicon-tools",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530120 "type": "module",
121 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530122 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530123 {
124 "module_name": "POS",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530125 "color": "#589494",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530126 "icon": "octicon octicon-credit-card",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530127 "type": "page",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530128 "link": "pos",
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530129 "label": _("POS")
Rushabh Mehta72e17192014-08-08 15:30:49 +0530130 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530131 {
Prateeksha Singh04c4ce32017-12-20 10:51:25 +0530132 "module_name": "Leaderboard",
133 "color": "#589494",
134 "icon": "octicon octicon-graph",
135 "type": "page",
136 "link": "leaderboard",
137 "label": _("Leaderboard")
138 },
139 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530140 "module_name": "Projects",
Nabin Haite6085392014-05-16 19:56:06 +0530141 "color": "#8e44ad",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530142 "icon": "octicon octicon-rocket",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530143 "type": "module",
144 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530145 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530146 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530147 "module_name": "Support",
Nabin Haite6085392014-05-16 19:56:06 +0530148 "color": "#2c3e50",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530149 "icon": "octicon octicon-issue-opened",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530150 "type": "module",
151 "hidden": 1
Rushabh Mehta67712402015-05-25 18:30:53 +0530152 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530153 {
154 "module_name": "Learn",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530155 "color": "#FF888B",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530156 "icon": "octicon octicon-device-camera-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530157 "type": "module",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530158 "is_help": True,
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530159 "label": _("Learn"),
160 "hidden": 1
Kanchan Chauhanfb3eb132016-06-29 15:04:08 +0530161 },
162 {
163 "module_name": "Maintenance",
164 "color": "#FF888B",
165 "icon": "octicon octicon-tools",
166 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530167 "label": _("Maintenance"),
168 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530169 },
170 {
171 "module_name": "Student",
172 "color": "#c0392b",
173 "icon": "octicon octicon-person",
174 "label": _("Student"),
175 "link": "List/Student",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530176 "_doctype": "Student",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530177 "type": "list",
178 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530179 },
180 {
181 "module_name": "Student Group",
182 "color": "#d59919",
183 "icon": "octicon octicon-organization",
184 "label": _("Student Group"),
185 "link": "List/Student Group",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530186 "_doctype": "Student Group",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530187 "type": "list",
188 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530189 },
190 {
191 "module_name": "Course Schedule",
192 "color": "#fd784f",
193 "icon": "octicon octicon-calendar",
194 "label": _("Course Schedule"),
Manas Solanki1fa99252018-03-07 12:08:52 +0530195 "link": "List/Course Schedule/Calendar",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530196 "_doctype": "Course Schedule",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530197 "type": "list",
198 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530199 },
200 {
Manas Solanki966f1412017-11-23 15:22:10 +0530201 "module_name": "Student Attendance Tool",
202 "color": "#C0392B",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530203 "icon": "octicon octicon-checklist",
Manas Solanki966f1412017-11-23 15:22:10 +0530204 "label": _("Student Attendance Tool"),
205 "link": "List/Student Attendance Tool",
206 "_doctype": "Student Attendance Tool",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530207 "type": "list",
208 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530209 },
210 {
211 "module_name": "Course",
212 "color": "#8e44ad",
213 "icon": "octicon octicon-book",
214 "label": _("Course"),
215 "link": "List/Course",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530216 "_doctype": "Course",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530217 "type": "list",
218 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530219 },
220 {
221 "module_name": "Program",
222 "color": "#9b59b6",
223 "icon": "octicon octicon-repo",
224 "label": _("Program"),
225 "link": "List/Program",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530226 "_doctype": "Program",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530227 "type": "list",
228 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530229 },
230 {
231 "module_name": "Student Applicant",
232 "color": "#4d927f",
233 "icon": "octicon octicon-clippy",
234 "label": _("Student Applicant"),
235 "link": "List/Student Applicant",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530236 "_doctype": "Student Applicant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530237 "type": "list",
238 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530239 },
240 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530241 "module_name": "Fees",
242 "color": "#83C21E",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530243 "icon": "fa fa-money",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530244 "label": _("Fees"),
245 "link": "List/Fees",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530246 "_doctype": "Fees",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530247 "type": "list",
248 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530249 },
250 {
251 "module_name": "Instructor",
252 "color": "#a99e4c",
253 "icon": "octicon octicon-broadcast",
254 "label": _("Instructor"),
255 "link": "List/Instructor",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530256 "_doctype": "Instructor",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530257 "type": "list",
258 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530259 },
260 {
261 "module_name": "Room",
262 "color": "#f22683",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530263 "icon": "fa fa-map-marker",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530264 "label": _("Room"),
265 "link": "List/Room",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530266 "_doctype": "Room",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530267 "type": "list",
268 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530269 },
270 {
Manas Solanki966f1412017-11-23 15:22:10 +0530271 "module_name": "Education",
272 "color": "#428B46",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530273 "icon": "octicon octicon-mortar-board",
274 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530275 "label": _("Education"),
276 "hidden": 1
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530277 },
system194e195d92018-01-30 19:18:24 +1100278 {
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530279 "module_name": "Healthcare",
280 "color": "#FF888B",
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530281 "icon": "fa fa-heartbeat",
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530282 "type": "module",
Faris Ansarifd345f82017-10-05 11:17:30 +0530283 "label": _("Healthcare"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530284 "hidden": 1
Faris Ansarifd345f82017-10-05 11:17:30 +0530285 },
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530286 {
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530287 "module_name": "Patient",
288 "color": "#6BE273",
289 "icon": "fa fa-user",
290 "doctype": "Patient",
291 "type": "link",
system194e195d92018-01-30 19:18:24 +1100292 "link": "List/Patient",
293 "label": _("Patient"),
294 "hidden": 1
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530295 },
296 {
Jamsheer14c6ab02018-10-10 14:44:36 +0530297 "module_name": "Healthcare Practitioner",
298 "color": "#2ecc71",
299 "icon": "fa fa-user-md",
300 "doctype": "Healthcare Practitioner",
301 "type": "link",
302 "link": "List/Healthcare Practitioner",
303 "label": _("Healthcare Practitioner"),
304 "hidden": 1
305 },
306 {
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530307 "module_name": "Patient Appointment",
308 "color": "#934F92",
309 "icon": "fa fa-calendar-plus-o",
310 "doctype": "Patient Appointment",
311 "type": "link",
system194e195d92018-01-30 19:18:24 +1100312 "link": "List/Patient Appointment",
313 "label": _("Patient Appointment"),
314 "hidden": 1
315 },
316 {
Jamsheerf9269112018-07-16 18:08:53 +0530317 "module_name": "Patient Encounter",
system194e195d92018-01-30 19:18:24 +1100318 "color": "#2ecc71",
319 "icon": "fa fa-stethoscope",
Jamsheerf9269112018-07-16 18:08:53 +0530320 "doctype": "Patient Encounter",
system194e195d92018-01-30 19:18:24 +1100321 "type": "link",
Jamsheerf9269112018-07-16 18:08:53 +0530322 "link": "List/Patient Encounter",
323 "label": _("Patient Encounter"),
system194e195d92018-01-30 19:18:24 +1100324 "hidden": 1
325 },
326 {
327 "module_name": "Lab Test",
328 "color": "#7578f6",
329 "icon": "octicon octicon-beaker",
330 "doctype": "Lab Test",
331 "type": "list",
332 "link": "List/Lab Test",
333 "label": _("Lab Test"),
334 "hidden": 1
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530335 },
Jamsheer14c6ab02018-10-10 14:44:36 +0530336 {
337 "module_name": "Vital Signs",
338 "color": "#2ecc71",
339 "icon": "fa fa-thermometer-empty",
340 "doctype": "Vital Signs",
341 "type": "list",
342 "link": "List/Vital Signs",
343 "label": _("Vital Signs"),
344 "hidden": 1
345 },
346 {
347 "module_name": "Clinical Procedure",
348 "color": "#FF888B",
349 "icon": "fa fa-medkit",
350 "doctype": "Clinical Procedure",
351 "type": "list",
352 "link": "List/Clinical Procedure",
353 "label": _("Clinical Procedure"),
354 "hidden": 1
355 },
356 {
357 "module_name": "Inpatient Record",
358 "color": "#7578f6",
359 "icon": "fa fa-list-alt",
360 "doctype": "Inpatient Record",
361 "type": "list",
362 "link": "List/Inpatient Record",
363 "label": _("Inpatient Record"),
364 "hidden": 1
365 },
Faris Ansarifd345f82017-10-05 11:17:30 +0530366 {
Prateeksha Singh5d227c92018-06-28 09:59:46 +0530367 "module_name": "Hub",
368 "color": "#009248",
369 "icon": "/assets/erpnext/images/hub_logo.svg",
370 "type": "page",
371 "link": "Hub/Item",
372 "label": _("Hub")
373 },
374 {
Manas Solanki2bca5a92017-12-18 13:55:30 +0530375 "module_name": "Data Import",
376 "color": "#FFF168",
377 "reverse": 1,
378 "doctype": "Data Import",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530379 "icon": "octicon octicon-cloud-upload",
Manas Solanki2bca5a92017-12-18 13:55:30 +0530380 "label": _("Data Import"),
381 "link": "List/Data Import",
382 "type": "list"
Faris Ansari367b90e2017-09-29 15:17:48 +0530383 },
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530384 {
385 "module_name": "Restaurant",
386 "color": "#EA81E8",
387 "icon": "🍔",
388 "_doctype": "Restaurant",
Shreya Shah77de8dc2018-06-19 10:43:08 +0530389 "type": "module",
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530390 "link": "List/Restaurant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530391 "label": _("Restaurant"),
392 "hidden": 1
393 },
394 {
Revant Nandgaonkar2dee8fc2018-02-12 11:57:12 +0530395 "module_name": "Hotels",
396 "color": "#EA81E8",
397 "icon": "fa fa-bed",
398 "type": "module",
399 "label": _("Hotels"),
400 "hidden": 1
401 },
402 {
Ameya Shenoy5c623682017-12-06 18:36:27 +0530403 "module_name": "Agriculture",
404 "color": "#8BC34A",
405 "icon": "octicon octicon-globe",
406 "type": "module",
407 "label": _("Agriculture"),
408 "hidden": 1
409 },
410 {
411 "module_name": "Crop",
412 "_doctype": "Crop",
413 "label": _("Crop"),
414 "color": "#8BC34A",
415 "icon": "fa fa-tree",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530416 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530417 "link": "List/Crop",
418 "hidden": 1
419 },
420 {
421 "module_name": "Crop Cycle",
422 "_doctype": "Crop Cycle",
423 "label": _("Crop Cycle"),
424 "color": "#8BC34A",
425 "icon": "fa fa-circle-o-notch",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530426 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530427 "link": "List/Crop Cycle",
428 "hidden": 1
429 },
430 {
431 "module_name": "Fertilizer",
432 "_doctype": "Fertilizer",
433 "label": _("Fertilizer"),
434 "color": "#8BC34A",
435 "icon": "fa fa-leaf",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530436 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530437 "link": "List/Fertilizer",
438 "hidden": 1
439 },
440 {
Alchezdf1eae82018-07-13 12:50:04 +0530441 "module_name": "Location",
442 "_doctype": "Location",
443 "label": _("Location"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530444 "color": "#8BC34A",
445 "icon": "fa fa-map",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530446 "type": "list",
Alchezdf1eae82018-07-13 12:50:04 +0530447 "link": "List/Location",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530448 "hidden": 1
449 },
450 {
451 "module_name": "Disease",
452 "_doctype": "Disease",
453 "label": _("Disease"),
454 "color": "#8BC34A",
455 "icon": "octicon octicon-bug",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530456 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530457 "link": "List/Disease",
458 "hidden": 1
459 },
460 {
461 "module_name": "Plant Analysis",
462 "_doctype": "Plant Analysis",
463 "label": _("Plant Analysis"),
464 "color": "#8BC34A",
465 "icon": "fa fa-pagelines",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530466 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530467 "link": "List/Plant Analysis",
468 "hidden": 1
469 },
470 {
471 "module_name": "Soil Analysis",
472 "_doctype": "Soil Analysis",
473 "label": _("Soil Analysis"),
474 "color": "#8BC34A",
475 "icon": "fa fa-flask",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530476 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530477 "link": "List/Soil Analysis",
478 "hidden": 1
479 },
480 {
481 "module_name": "Soil Texture",
482 "_doctype": "Soil Texture",
483 "label": _("Soil Texture"),
484 "color": "#8BC34A",
485 "icon": "octicon octicon-beaker",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530486 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530487 "link": "List/Soil Texture",
488 "hidden": 1
489 },
490 {
491 "module_name": "Water Analysis",
492 "_doctype": "Water Analysis",
493 "label": _("Water Analysis"),
494 "color": "#8BC34A",
495 "icon": "fa fa-tint",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530496 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530497 "link": "List/Water Analysis",
498 "hidden": 1
499 },
500 {
501 "module_name": "Weather",
502 "_doctype": "Weather",
503 "label": _("Weather"),
504 "color": "#8BC34A",
505 "icon": "fa fa-sun-o",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530506 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530507 "link": "List/Weather",
508 "hidden": 1
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530509 },
510 {
511 "module_name": "Assets",
512 "color": "#4286f4",
513 "icon": "octicon octicon-database",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530514 "hidden": 1,
515 "label": _("Assets"),
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530516 "type": "module"
517 },
Vishalca614532017-09-11 15:13:16 +0530518 {
Vishala68234d2017-11-22 23:11:12 +0530519 "module_name": "Grant Application",
520 "color": "#E9AB17",
521 "icon": "fa fa-gift",
522 "_doctype": "Grant Application",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530523 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530524 "link": "List/Grant Application",
Vishal74116172017-12-05 15:43:19 +0530525 "label": _("Grant Application"),
526 "hidden": 1
527
Vishala68234d2017-11-22 23:11:12 +0530528 },
529 {
530 "module_name": "Donor",
531 "color": "#7F5A58",
532 "icon": "fa fa-tint",
533 "_doctype": "Donor",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530534 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530535 "link": "List/Donor",
Vishal74116172017-12-05 15:43:19 +0530536 "label": _("Donor"),
537 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530538 },
539 {
540 "module_name": "Volunteer",
541 "color": "#7E587E",
542 "icon": "fa fa-angellist",
543 "_doctype": "Volunteer",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530544 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530545 "link": "List/Volunteer",
Vishal74116172017-12-05 15:43:19 +0530546 "label": _("Volunteer"),
547 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530548 },
549 {
550 "module_name": "Member",
551 "color": "#79BAEC",
552 "icon": "fa fa-users",
553 "_doctype": "Member",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530554 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530555 "link": "List/Member",
Vishal74116172017-12-05 15:43:19 +0530556 "label": _("Member"),
557 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530558 },
559 {
560 "module_name": "Chapter",
561 "color": "#3B9C9C",
562 "icon": "fa fa-handshake-o",
563 "_doctype": "Chapter",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530564 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530565 "link": "List/Chapter",
Vishal74116172017-12-05 15:43:19 +0530566 "label": _("Chapter"),
567 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530568 },
569 {
Vishalca614532017-09-11 15:13:16 +0530570 "module_name": "Non Profit",
571 "color": "#DE2B37",
572 "icon": "octicon octicon-heart",
573 "type": "module",
Vishal74116172017-12-05 15:43:19 +0530574 "label": _("Non Profit"),
575 "hidden": 1
Vishalca614532017-09-11 15:13:16 +0530576 }
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530577 ]