blob: 2202b9e4adae23443bd0c5dc24bc5104851a3add [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": "Projects",
Nabin Haite6085392014-05-16 19:56:06 +0530140 "color": "#8e44ad",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530141 "icon": "octicon octicon-rocket",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530142 "type": "module",
143 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530144 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530145 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530146 "module_name": "Support",
Nabin Haite6085392014-05-16 19:56:06 +0530147 "color": "#2c3e50",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530148 "icon": "octicon octicon-issue-opened",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530149 "type": "module",
150 "hidden": 1
Rushabh Mehta67712402015-05-25 18:30:53 +0530151 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530152 {
Suraj Shetty89625b62018-12-21 11:04:32 +0530153 "module_name": "Help",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530154 "color": "#FF888B",
Rushabh Mehta7d23e422015-11-02 10:45:18 +0530155 "icon": "octicon octicon-device-camera-video",
Rushabh Mehta67712402015-05-25 18:30:53 +0530156 "type": "module",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530157 "is_help": True,
Suraj Shetty89625b62018-12-21 11:04:32 +0530158 "label": _("Help"),
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530159 "hidden": 1
Kanchan Chauhanfb3eb132016-06-29 15:04:08 +0530160 },
161 {
162 "module_name": "Maintenance",
163 "color": "#FF888B",
164 "icon": "octicon octicon-tools",
165 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530166 "label": _("Maintenance"),
167 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530168 },
169 {
170 "module_name": "Student",
171 "color": "#c0392b",
172 "icon": "octicon octicon-person",
173 "label": _("Student"),
174 "link": "List/Student",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530175 "_doctype": "Student",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530176 "type": "list",
177 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530178 },
179 {
180 "module_name": "Student Group",
181 "color": "#d59919",
182 "icon": "octicon octicon-organization",
183 "label": _("Student Group"),
184 "link": "List/Student Group",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530185 "_doctype": "Student Group",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530186 "type": "list",
187 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530188 },
189 {
190 "module_name": "Course Schedule",
191 "color": "#fd784f",
192 "icon": "octicon octicon-calendar",
193 "label": _("Course Schedule"),
Manas Solanki1fa99252018-03-07 12:08:52 +0530194 "link": "List/Course Schedule/Calendar",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530195 "_doctype": "Course Schedule",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530196 "type": "list",
197 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530198 },
199 {
Manas Solanki966f1412017-11-23 15:22:10 +0530200 "module_name": "Student Attendance Tool",
201 "color": "#C0392B",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530202 "icon": "octicon octicon-checklist",
Manas Solanki966f1412017-11-23 15:22:10 +0530203 "label": _("Student Attendance Tool"),
204 "link": "List/Student Attendance Tool",
205 "_doctype": "Student Attendance Tool",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530206 "type": "list",
207 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530208 },
209 {
210 "module_name": "Course",
211 "color": "#8e44ad",
212 "icon": "octicon octicon-book",
213 "label": _("Course"),
214 "link": "List/Course",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530215 "_doctype": "Course",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530216 "type": "list",
217 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530218 },
219 {
220 "module_name": "Program",
221 "color": "#9b59b6",
222 "icon": "octicon octicon-repo",
223 "label": _("Program"),
224 "link": "List/Program",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530225 "_doctype": "Program",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530226 "type": "list",
227 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530228 },
229 {
230 "module_name": "Student Applicant",
231 "color": "#4d927f",
232 "icon": "octicon octicon-clippy",
233 "label": _("Student Applicant"),
234 "link": "List/Student Applicant",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530235 "_doctype": "Student Applicant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530236 "type": "list",
237 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530238 },
239 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530240 "module_name": "Fees",
241 "color": "#83C21E",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530242 "icon": "fa fa-money",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530243 "label": _("Fees"),
244 "link": "List/Fees",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530245 "_doctype": "Fees",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530246 "type": "list",
247 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530248 },
249 {
250 "module_name": "Instructor",
251 "color": "#a99e4c",
252 "icon": "octicon octicon-broadcast",
253 "label": _("Instructor"),
254 "link": "List/Instructor",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530255 "_doctype": "Instructor",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530256 "type": "list",
257 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530258 },
259 {
260 "module_name": "Room",
261 "color": "#f22683",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530262 "icon": "fa fa-map-marker",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530263 "label": _("Room"),
264 "link": "List/Room",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530265 "_doctype": "Room",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530266 "type": "list",
267 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530268 },
269 {
Manas Solanki966f1412017-11-23 15:22:10 +0530270 "module_name": "Education",
271 "color": "#428B46",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530272 "icon": "octicon octicon-mortar-board",
273 "type": "module",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530274 "label": _("Education"),
275 "hidden": 1
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530276 },
system194e195d92018-01-30 19:18:24 +1100277 {
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530278 "module_name": "Healthcare",
279 "color": "#FF888B",
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530280 "icon": "fa fa-heartbeat",
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530281 "type": "module",
Faris Ansarifd345f82017-10-05 11:17:30 +0530282 "label": _("Healthcare"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530283 "hidden": 1
Faris Ansarifd345f82017-10-05 11:17:30 +0530284 },
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530285 {
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530286 "module_name": "Patient",
287 "color": "#6BE273",
288 "icon": "fa fa-user",
289 "doctype": "Patient",
290 "type": "link",
system194e195d92018-01-30 19:18:24 +1100291 "link": "List/Patient",
292 "label": _("Patient"),
293 "hidden": 1
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530294 },
295 {
Jamsheer14c6ab02018-10-10 14:44:36 +0530296 "module_name": "Healthcare Practitioner",
297 "color": "#2ecc71",
298 "icon": "fa fa-user-md",
299 "doctype": "Healthcare Practitioner",
300 "type": "link",
301 "link": "List/Healthcare Practitioner",
302 "label": _("Healthcare Practitioner"),
303 "hidden": 1
304 },
305 {
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530306 "module_name": "Patient Appointment",
307 "color": "#934F92",
308 "icon": "fa fa-calendar-plus-o",
309 "doctype": "Patient Appointment",
310 "type": "link",
system194e195d92018-01-30 19:18:24 +1100311 "link": "List/Patient Appointment",
312 "label": _("Patient Appointment"),
313 "hidden": 1
314 },
315 {
Jamsheerf9269112018-07-16 18:08:53 +0530316 "module_name": "Patient Encounter",
system194e195d92018-01-30 19:18:24 +1100317 "color": "#2ecc71",
318 "icon": "fa fa-stethoscope",
Jamsheerf9269112018-07-16 18:08:53 +0530319 "doctype": "Patient Encounter",
system194e195d92018-01-30 19:18:24 +1100320 "type": "link",
Jamsheerf9269112018-07-16 18:08:53 +0530321 "link": "List/Patient Encounter",
322 "label": _("Patient Encounter"),
system194e195d92018-01-30 19:18:24 +1100323 "hidden": 1
324 },
325 {
326 "module_name": "Lab Test",
327 "color": "#7578f6",
328 "icon": "octicon octicon-beaker",
329 "doctype": "Lab Test",
330 "type": "list",
331 "link": "List/Lab Test",
332 "label": _("Lab Test"),
333 "hidden": 1
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530334 },
Jamsheer14c6ab02018-10-10 14:44:36 +0530335 {
336 "module_name": "Vital Signs",
337 "color": "#2ecc71",
338 "icon": "fa fa-thermometer-empty",
339 "doctype": "Vital Signs",
340 "type": "list",
341 "link": "List/Vital Signs",
342 "label": _("Vital Signs"),
343 "hidden": 1
344 },
345 {
346 "module_name": "Clinical Procedure",
347 "color": "#FF888B",
348 "icon": "fa fa-medkit",
349 "doctype": "Clinical Procedure",
350 "type": "list",
351 "link": "List/Clinical Procedure",
352 "label": _("Clinical Procedure"),
353 "hidden": 1
354 },
355 {
356 "module_name": "Inpatient Record",
357 "color": "#7578f6",
358 "icon": "fa fa-list-alt",
359 "doctype": "Inpatient Record",
360 "type": "list",
361 "link": "List/Inpatient Record",
362 "label": _("Inpatient Record"),
363 "hidden": 1
364 },
Faris Ansarifd345f82017-10-05 11:17:30 +0530365 {
Prateeksha Singh5d227c92018-06-28 09:59:46 +0530366 "module_name": "Hub",
367 "color": "#009248",
368 "icon": "/assets/erpnext/images/hub_logo.svg",
369 "type": "page",
370 "link": "Hub/Item",
371 "label": _("Hub")
372 },
373 {
Manas Solanki2bca5a92017-12-18 13:55:30 +0530374 "module_name": "Data Import",
375 "color": "#FFF168",
376 "reverse": 1,
377 "doctype": "Data Import",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530378 "icon": "octicon octicon-cloud-upload",
Manas Solanki2bca5a92017-12-18 13:55:30 +0530379 "label": _("Data Import"),
380 "link": "List/Data Import",
381 "type": "list"
Faris Ansari367b90e2017-09-29 15:17:48 +0530382 },
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530383 {
384 "module_name": "Restaurant",
385 "color": "#EA81E8",
386 "icon": "🍔",
387 "_doctype": "Restaurant",
Shreya Shah77de8dc2018-06-19 10:43:08 +0530388 "type": "module",
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530389 "link": "List/Restaurant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530390 "label": _("Restaurant"),
391 "hidden": 1
392 },
393 {
Revant Nandgaonkar2dee8fc2018-02-12 11:57:12 +0530394 "module_name": "Hotels",
395 "color": "#EA81E8",
396 "icon": "fa fa-bed",
397 "type": "module",
398 "label": _("Hotels"),
399 "hidden": 1
400 },
401 {
Ameya Shenoy5c623682017-12-06 18:36:27 +0530402 "module_name": "Agriculture",
403 "color": "#8BC34A",
404 "icon": "octicon octicon-globe",
405 "type": "module",
406 "label": _("Agriculture"),
407 "hidden": 1
408 },
409 {
410 "module_name": "Crop",
411 "_doctype": "Crop",
412 "label": _("Crop"),
413 "color": "#8BC34A",
414 "icon": "fa fa-tree",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530415 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530416 "link": "List/Crop",
417 "hidden": 1
418 },
419 {
420 "module_name": "Crop Cycle",
421 "_doctype": "Crop Cycle",
422 "label": _("Crop Cycle"),
423 "color": "#8BC34A",
424 "icon": "fa fa-circle-o-notch",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530425 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530426 "link": "List/Crop Cycle",
427 "hidden": 1
428 },
429 {
430 "module_name": "Fertilizer",
431 "_doctype": "Fertilizer",
432 "label": _("Fertilizer"),
433 "color": "#8BC34A",
434 "icon": "fa fa-leaf",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530435 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530436 "link": "List/Fertilizer",
437 "hidden": 1
438 },
439 {
Alchezdf1eae82018-07-13 12:50:04 +0530440 "module_name": "Location",
441 "_doctype": "Location",
442 "label": _("Location"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530443 "color": "#8BC34A",
444 "icon": "fa fa-map",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530445 "type": "list",
Alchezdf1eae82018-07-13 12:50:04 +0530446 "link": "List/Location",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530447 "hidden": 1
448 },
449 {
450 "module_name": "Disease",
451 "_doctype": "Disease",
452 "label": _("Disease"),
453 "color": "#8BC34A",
454 "icon": "octicon octicon-bug",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530455 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530456 "link": "List/Disease",
457 "hidden": 1
458 },
459 {
460 "module_name": "Plant Analysis",
461 "_doctype": "Plant Analysis",
462 "label": _("Plant Analysis"),
463 "color": "#8BC34A",
464 "icon": "fa fa-pagelines",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530465 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530466 "link": "List/Plant Analysis",
467 "hidden": 1
468 },
469 {
470 "module_name": "Soil Analysis",
471 "_doctype": "Soil Analysis",
472 "label": _("Soil Analysis"),
473 "color": "#8BC34A",
474 "icon": "fa fa-flask",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530475 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530476 "link": "List/Soil Analysis",
477 "hidden": 1
478 },
479 {
480 "module_name": "Soil Texture",
481 "_doctype": "Soil Texture",
482 "label": _("Soil Texture"),
483 "color": "#8BC34A",
484 "icon": "octicon octicon-beaker",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530485 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530486 "link": "List/Soil Texture",
487 "hidden": 1
488 },
489 {
490 "module_name": "Water Analysis",
491 "_doctype": "Water Analysis",
492 "label": _("Water Analysis"),
493 "color": "#8BC34A",
494 "icon": "fa fa-tint",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530495 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530496 "link": "List/Water Analysis",
497 "hidden": 1
498 },
499 {
500 "module_name": "Weather",
501 "_doctype": "Weather",
502 "label": _("Weather"),
503 "color": "#8BC34A",
504 "icon": "fa fa-sun-o",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530505 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530506 "link": "List/Weather",
507 "hidden": 1
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530508 },
509 {
510 "module_name": "Assets",
511 "color": "#4286f4",
512 "icon": "octicon octicon-database",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530513 "hidden": 1,
514 "label": _("Assets"),
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530515 "type": "module"
516 },
Vishalca614532017-09-11 15:13:16 +0530517 {
Vishala68234d2017-11-22 23:11:12 +0530518 "module_name": "Grant Application",
519 "color": "#E9AB17",
520 "icon": "fa fa-gift",
521 "_doctype": "Grant Application",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530522 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530523 "link": "List/Grant Application",
Vishal74116172017-12-05 15:43:19 +0530524 "label": _("Grant Application"),
525 "hidden": 1
526
Vishala68234d2017-11-22 23:11:12 +0530527 },
528 {
529 "module_name": "Donor",
530 "color": "#7F5A58",
531 "icon": "fa fa-tint",
532 "_doctype": "Donor",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530533 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530534 "link": "List/Donor",
Vishal74116172017-12-05 15:43:19 +0530535 "label": _("Donor"),
536 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530537 },
538 {
539 "module_name": "Volunteer",
540 "color": "#7E587E",
541 "icon": "fa fa-angellist",
542 "_doctype": "Volunteer",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530543 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530544 "link": "List/Volunteer",
Vishal74116172017-12-05 15:43:19 +0530545 "label": _("Volunteer"),
546 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530547 },
548 {
549 "module_name": "Member",
550 "color": "#79BAEC",
551 "icon": "fa fa-users",
552 "_doctype": "Member",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530553 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530554 "link": "List/Member",
Vishal74116172017-12-05 15:43:19 +0530555 "label": _("Member"),
556 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530557 },
558 {
559 "module_name": "Chapter",
560 "color": "#3B9C9C",
561 "icon": "fa fa-handshake-o",
562 "_doctype": "Chapter",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530563 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530564 "link": "List/Chapter",
Vishal74116172017-12-05 15:43:19 +0530565 "label": _("Chapter"),
566 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530567 },
568 {
Vishalca614532017-09-11 15:13:16 +0530569 "module_name": "Non Profit",
570 "color": "#DE2B37",
571 "icon": "octicon octicon-heart",
572 "type": "module",
Vishal74116172017-12-05 15:43:19 +0530573 "label": _("Non Profit"),
574 "hidden": 1
Himanshu0209ef02018-12-25 17:42:31 +0530575 },
576 {
577 "module_name": "Quality Management",
578 "color": "blue",
579 "icon": "octicon octicon-package",
580 "type": "module",
581 "label": _("Quality Management")
Vishalca614532017-09-11 15:13:16 +0530582 }
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530583 ]