blob: f365914471295bebf22d3039c387bc148ce57fc9 [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 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053072 "module_name": "Accounts",
Nabin Haite6085392014-05-16 19:56:06 +053073 "color": "#3498db",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053074 "icon": "octicon octicon-repo",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053075 "type": "module",
76 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +053077 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053078 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053079 "module_name": "Stock",
80 "color": "#f39c12",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053081 "icon": "octicon octicon-package",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053082 "type": "module",
83 "hidden": 1
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053084 },
85 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053086 "module_name": "CRM",
87 "color": "#EF4DB6",
88 "icon": "octicon octicon-broadcast",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053089 "type": "module",
90 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053091 },
92 {
93 "module_name": "Selling",
94 "color": "#1abc9c",
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053095 "icon": "octicon octicon-tag",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053096 "type": "module",
97 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053098 },
99 {
100 "module_name": "Buying",
Nabin Haite6085392014-05-16 19:56:06 +0530101 "color": "#c0392b",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530102 "icon": "octicon octicon-briefcase",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530103 "type": "module",
104 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530105 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530106 {
107 "module_name": "HR",
Nabin Haite6085392014-05-16 19:56:06 +0530108 "color": "#2ecc71",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530109 "icon": "octicon octicon-organization",
Nabin Haite6085392014-05-16 19:56:06 +0530110 "label": _("Human Resources"),
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530111 "type": "module",
112 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530113 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530114 {
115 "module_name": "Manufacturing",
Nabin Haite6085392014-05-16 19:56:06 +0530116 "color": "#7f8c8d",
Rushabh Mehtaff582612015-01-02 14:40:48 +0530117 "icon": "octicon octicon-tools",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530118 "type": "module",
119 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530120 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530121 {
122 "module_name": "POS",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530123 "color": "#589494",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530124 "icon": "octicon octicon-credit-card",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530125 "type": "page",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530126 "link": "pos",
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530127 "label": _("POS")
Rushabh Mehta72e17192014-08-08 15:30:49 +0530128 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530129 {
Prateeksha Singh04c4ce32017-12-20 10:51:25 +0530130 "module_name": "Leaderboard",
131 "color": "#589494",
132 "icon": "octicon octicon-graph",
133 "type": "page",
134 "link": "leaderboard",
135 "label": _("Leaderboard")
136 },
137 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530138 "module_name": "Projects",
Nabin Haite6085392014-05-16 19:56:06 +0530139 "color": "#8e44ad",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530140 "icon": "octicon octicon-rocket",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530141 "type": "module",
142 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530143 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530144 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530145 "module_name": "Support",
Nabin Haite6085392014-05-16 19:56:06 +0530146 "color": "#2c3e50",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530147 "icon": "octicon octicon-issue-opened",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530148 "type": "module",
149 "hidden": 1
Rushabh Mehta67712402015-05-25 18:30:53 +0530150 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530151 {
Suraj Shetty89625b62018-12-21 11:04:32 +0530152 "module_name": "Help",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530153 "color": "#FF888B",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530154 "icon": "octicon octicon-device-camera-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530155 "type": "module",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530156 "is_help": True,
Suraj Shetty89625b62018-12-21 11:04:32 +0530157 "label": _("Help"),
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530158 "hidden": 1
Kanchan Chauhanfb3eb132016-06-29 15:04:08 +0530159 },
160 {
161 "module_name": "Maintenance",
162 "color": "#FF888B",
163 "icon": "octicon octicon-tools",
164 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530165 "label": _("Maintenance"),
166 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530167 },
168 {
169 "module_name": "Student",
170 "color": "#c0392b",
171 "icon": "octicon octicon-person",
172 "label": _("Student"),
173 "link": "List/Student",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530174 "_doctype": "Student",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530175 "type": "list",
176 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530177 },
178 {
179 "module_name": "Student Group",
180 "color": "#d59919",
181 "icon": "octicon octicon-organization",
182 "label": _("Student Group"),
183 "link": "List/Student Group",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530184 "_doctype": "Student Group",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530185 "type": "list",
186 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530187 },
188 {
189 "module_name": "Course Schedule",
190 "color": "#fd784f",
191 "icon": "octicon octicon-calendar",
192 "label": _("Course Schedule"),
Manas Solanki1fa99252018-03-07 12:08:52 +0530193 "link": "List/Course Schedule/Calendar",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530194 "_doctype": "Course Schedule",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530195 "type": "list",
196 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530197 },
198 {
Manas Solanki966f1412017-11-23 15:22:10 +0530199 "module_name": "Student Attendance Tool",
200 "color": "#C0392B",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530201 "icon": "octicon octicon-checklist",
Manas Solanki966f1412017-11-23 15:22:10 +0530202 "label": _("Student Attendance Tool"),
203 "link": "List/Student Attendance Tool",
204 "_doctype": "Student Attendance Tool",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530205 "type": "list",
206 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530207 },
208 {
209 "module_name": "Course",
210 "color": "#8e44ad",
211 "icon": "octicon octicon-book",
212 "label": _("Course"),
213 "link": "List/Course",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530214 "_doctype": "Course",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530215 "type": "list",
216 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530217 },
218 {
219 "module_name": "Program",
220 "color": "#9b59b6",
221 "icon": "octicon octicon-repo",
222 "label": _("Program"),
223 "link": "List/Program",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530224 "_doctype": "Program",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530225 "type": "list",
226 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530227 },
228 {
229 "module_name": "Student Applicant",
230 "color": "#4d927f",
231 "icon": "octicon octicon-clippy",
232 "label": _("Student Applicant"),
233 "link": "List/Student Applicant",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530234 "_doctype": "Student Applicant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530235 "type": "list",
236 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530237 },
238 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530239 "module_name": "Fees",
240 "color": "#83C21E",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530241 "icon": "fa fa-money",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530242 "label": _("Fees"),
243 "link": "List/Fees",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530244 "_doctype": "Fees",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530245 "type": "list",
246 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530247 },
248 {
249 "module_name": "Instructor",
250 "color": "#a99e4c",
251 "icon": "octicon octicon-broadcast",
252 "label": _("Instructor"),
253 "link": "List/Instructor",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530254 "_doctype": "Instructor",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530255 "type": "list",
256 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530257 },
258 {
259 "module_name": "Room",
260 "color": "#f22683",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530261 "icon": "fa fa-map-marker",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530262 "label": _("Room"),
263 "link": "List/Room",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530264 "_doctype": "Room",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530265 "type": "list",
266 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530267 },
268 {
Manas Solanki966f1412017-11-23 15:22:10 +0530269 "module_name": "Education",
270 "color": "#428B46",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530271 "icon": "octicon octicon-mortar-board",
272 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530273 "label": _("Education"),
274 "hidden": 1
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530275 },
system194e195d92018-01-30 19:18:24 +1100276 {
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530277 "module_name": "Healthcare",
278 "color": "#FF888B",
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530279 "icon": "fa fa-heartbeat",
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530280 "type": "module",
Faris Ansarifd345f82017-10-05 11:17:30 +0530281 "label": _("Healthcare"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530282 "hidden": 1
Faris Ansarifd345f82017-10-05 11:17:30 +0530283 },
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530284 {
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530285 "module_name": "Patient",
286 "color": "#6BE273",
287 "icon": "fa fa-user",
288 "doctype": "Patient",
289 "type": "link",
system194e195d92018-01-30 19:18:24 +1100290 "link": "List/Patient",
291 "label": _("Patient"),
292 "hidden": 1
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530293 },
294 {
Jamsheer14c6ab02018-10-10 14:44:36 +0530295 "module_name": "Healthcare Practitioner",
296 "color": "#2ecc71",
297 "icon": "fa fa-user-md",
298 "doctype": "Healthcare Practitioner",
299 "type": "link",
300 "link": "List/Healthcare Practitioner",
301 "label": _("Healthcare Practitioner"),
302 "hidden": 1
303 },
304 {
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530305 "module_name": "Patient Appointment",
306 "color": "#934F92",
307 "icon": "fa fa-calendar-plus-o",
308 "doctype": "Patient Appointment",
309 "type": "link",
system194e195d92018-01-30 19:18:24 +1100310 "link": "List/Patient Appointment",
311 "label": _("Patient Appointment"),
312 "hidden": 1
313 },
314 {
Jamsheerf9269112018-07-16 18:08:53 +0530315 "module_name": "Patient Encounter",
system194e195d92018-01-30 19:18:24 +1100316 "color": "#2ecc71",
317 "icon": "fa fa-stethoscope",
Jamsheerf9269112018-07-16 18:08:53 +0530318 "doctype": "Patient Encounter",
system194e195d92018-01-30 19:18:24 +1100319 "type": "link",
Jamsheerf9269112018-07-16 18:08:53 +0530320 "link": "List/Patient Encounter",
321 "label": _("Patient Encounter"),
system194e195d92018-01-30 19:18:24 +1100322 "hidden": 1
323 },
324 {
325 "module_name": "Lab Test",
326 "color": "#7578f6",
327 "icon": "octicon octicon-beaker",
328 "doctype": "Lab Test",
329 "type": "list",
330 "link": "List/Lab Test",
331 "label": _("Lab Test"),
332 "hidden": 1
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530333 },
Jamsheer14c6ab02018-10-10 14:44:36 +0530334 {
335 "module_name": "Vital Signs",
336 "color": "#2ecc71",
337 "icon": "fa fa-thermometer-empty",
338 "doctype": "Vital Signs",
339 "type": "list",
340 "link": "List/Vital Signs",
341 "label": _("Vital Signs"),
342 "hidden": 1
343 },
344 {
345 "module_name": "Clinical Procedure",
346 "color": "#FF888B",
347 "icon": "fa fa-medkit",
348 "doctype": "Clinical Procedure",
349 "type": "list",
350 "link": "List/Clinical Procedure",
351 "label": _("Clinical Procedure"),
352 "hidden": 1
353 },
354 {
355 "module_name": "Inpatient Record",
356 "color": "#7578f6",
357 "icon": "fa fa-list-alt",
358 "doctype": "Inpatient Record",
359 "type": "list",
360 "link": "List/Inpatient Record",
361 "label": _("Inpatient Record"),
362 "hidden": 1
363 },
Faris Ansarifd345f82017-10-05 11:17:30 +0530364 {
Prateeksha Singh5d227c92018-06-28 09:59:46 +0530365 "module_name": "Hub",
366 "color": "#009248",
367 "icon": "/assets/erpnext/images/hub_logo.svg",
368 "type": "page",
369 "link": "Hub/Item",
370 "label": _("Hub")
371 },
372 {
Manas Solanki2bca5a92017-12-18 13:55:30 +0530373 "module_name": "Data Import",
374 "color": "#FFF168",
375 "reverse": 1,
376 "doctype": "Data Import",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530377 "icon": "octicon octicon-cloud-upload",
Manas Solanki2bca5a92017-12-18 13:55:30 +0530378 "label": _("Data Import"),
379 "link": "List/Data Import",
380 "type": "list"
Faris Ansari367b90e2017-09-29 15:17:48 +0530381 },
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530382 {
383 "module_name": "Restaurant",
384 "color": "#EA81E8",
385 "icon": "🍔",
386 "_doctype": "Restaurant",
Shreya Shah77de8dc2018-06-19 10:43:08 +0530387 "type": "module",
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530388 "link": "List/Restaurant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530389 "label": _("Restaurant"),
390 "hidden": 1
391 },
392 {
Revant Nandgaonkar2dee8fc2018-02-12 11:57:12 +0530393 "module_name": "Hotels",
394 "color": "#EA81E8",
395 "icon": "fa fa-bed",
396 "type": "module",
397 "label": _("Hotels"),
398 "hidden": 1
399 },
400 {
Ameya Shenoy5c623682017-12-06 18:36:27 +0530401 "module_name": "Agriculture",
402 "color": "#8BC34A",
403 "icon": "octicon octicon-globe",
404 "type": "module",
405 "label": _("Agriculture"),
406 "hidden": 1
407 },
408 {
409 "module_name": "Crop",
410 "_doctype": "Crop",
411 "label": _("Crop"),
412 "color": "#8BC34A",
413 "icon": "fa fa-tree",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530414 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530415 "link": "List/Crop",
416 "hidden": 1
417 },
418 {
419 "module_name": "Crop Cycle",
420 "_doctype": "Crop Cycle",
421 "label": _("Crop Cycle"),
422 "color": "#8BC34A",
423 "icon": "fa fa-circle-o-notch",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530424 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530425 "link": "List/Crop Cycle",
426 "hidden": 1
427 },
428 {
429 "module_name": "Fertilizer",
430 "_doctype": "Fertilizer",
431 "label": _("Fertilizer"),
432 "color": "#8BC34A",
433 "icon": "fa fa-leaf",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530434 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530435 "link": "List/Fertilizer",
436 "hidden": 1
437 },
438 {
Alchezdf1eae82018-07-13 12:50:04 +0530439 "module_name": "Location",
440 "_doctype": "Location",
441 "label": _("Location"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530442 "color": "#8BC34A",
443 "icon": "fa fa-map",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530444 "type": "list",
Alchezdf1eae82018-07-13 12:50:04 +0530445 "link": "List/Location",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530446 "hidden": 1
447 },
448 {
449 "module_name": "Disease",
450 "_doctype": "Disease",
451 "label": _("Disease"),
452 "color": "#8BC34A",
453 "icon": "octicon octicon-bug",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530454 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530455 "link": "List/Disease",
456 "hidden": 1
457 },
458 {
459 "module_name": "Plant Analysis",
460 "_doctype": "Plant Analysis",
461 "label": _("Plant Analysis"),
462 "color": "#8BC34A",
463 "icon": "fa fa-pagelines",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530464 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530465 "link": "List/Plant Analysis",
466 "hidden": 1
467 },
468 {
469 "module_name": "Soil Analysis",
470 "_doctype": "Soil Analysis",
471 "label": _("Soil Analysis"),
472 "color": "#8BC34A",
473 "icon": "fa fa-flask",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530474 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530475 "link": "List/Soil Analysis",
476 "hidden": 1
477 },
478 {
479 "module_name": "Soil Texture",
480 "_doctype": "Soil Texture",
481 "label": _("Soil Texture"),
482 "color": "#8BC34A",
483 "icon": "octicon octicon-beaker",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530484 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530485 "link": "List/Soil Texture",
486 "hidden": 1
487 },
488 {
489 "module_name": "Water Analysis",
490 "_doctype": "Water Analysis",
491 "label": _("Water Analysis"),
492 "color": "#8BC34A",
493 "icon": "fa fa-tint",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530494 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530495 "link": "List/Water Analysis",
496 "hidden": 1
497 },
498 {
499 "module_name": "Weather",
500 "_doctype": "Weather",
501 "label": _("Weather"),
502 "color": "#8BC34A",
503 "icon": "fa fa-sun-o",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530504 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530505 "link": "List/Weather",
506 "hidden": 1
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530507 },
508 {
509 "module_name": "Assets",
510 "color": "#4286f4",
511 "icon": "octicon octicon-database",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530512 "hidden": 1,
513 "label": _("Assets"),
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530514 "type": "module"
515 },
Vishalca614532017-09-11 15:13:16 +0530516 {
Vishala68234d2017-11-22 23:11:12 +0530517 "module_name": "Grant Application",
518 "color": "#E9AB17",
519 "icon": "fa fa-gift",
520 "_doctype": "Grant Application",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530521 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530522 "link": "List/Grant Application",
Vishal74116172017-12-05 15:43:19 +0530523 "label": _("Grant Application"),
524 "hidden": 1
525
Vishala68234d2017-11-22 23:11:12 +0530526 },
527 {
528 "module_name": "Donor",
529 "color": "#7F5A58",
530 "icon": "fa fa-tint",
531 "_doctype": "Donor",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530532 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530533 "link": "List/Donor",
Vishal74116172017-12-05 15:43:19 +0530534 "label": _("Donor"),
535 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530536 },
537 {
538 "module_name": "Volunteer",
539 "color": "#7E587E",
540 "icon": "fa fa-angellist",
541 "_doctype": "Volunteer",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530542 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530543 "link": "List/Volunteer",
Vishal74116172017-12-05 15:43:19 +0530544 "label": _("Volunteer"),
545 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530546 },
547 {
548 "module_name": "Member",
549 "color": "#79BAEC",
550 "icon": "fa fa-users",
551 "_doctype": "Member",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530552 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530553 "link": "List/Member",
Vishal74116172017-12-05 15:43:19 +0530554 "label": _("Member"),
555 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530556 },
557 {
558 "module_name": "Chapter",
559 "color": "#3B9C9C",
560 "icon": "fa fa-handshake-o",
561 "_doctype": "Chapter",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530562 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530563 "link": "List/Chapter",
Vishal74116172017-12-05 15:43:19 +0530564 "label": _("Chapter"),
565 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530566 },
567 {
Vishalca614532017-09-11 15:13:16 +0530568 "module_name": "Non Profit",
569 "color": "#DE2B37",
570 "icon": "octicon octicon-heart",
571 "type": "module",
Vishal74116172017-12-05 15:43:19 +0530572 "label": _("Non Profit"),
573 "hidden": 1
Vishalca614532017-09-11 15:13:16 +0530574 }
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530575 ]