blob: 90d0ca004216d6241d14f75d3c8e96940ddda937 [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": "POS",
Rushabh Mehta72e17192014-08-08 15:30:49 +053073 "color": "#589494",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053074 "icon": "octicon octicon-credit-card",
Rushabh Mehta72e17192014-08-08 15:30:49 +053075 "type": "page",
Rushabh Mehtaeb961372016-01-04 15:48:37 +053076 "link": "pos",
Rohit Waghchauree0934d12016-05-11 15:04:57 +053077 "label": _("POS")
Rushabh Mehta72e17192014-08-08 15:30:49 +053078 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053079 {
Prateeksha Singh04c4ce32017-12-20 10:51:25 +053080 "module_name": "Leaderboard",
81 "color": "#589494",
82 "icon": "octicon octicon-graph",
83 "type": "page",
84 "link": "leaderboard",
85 "label": _("Leaderboard")
86 },
87 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +053088 "module_name": "Student",
89 "color": "#c0392b",
90 "icon": "octicon octicon-person",
91 "label": _("Student"),
92 "link": "List/Student",
Rushabh Mehta11900e82016-07-22 10:58:56 +053093 "_doctype": "Student",
Ameya Shenoy5c623682017-12-06 18:36:27 +053094 "type": "list",
95 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +053096 },
97 {
98 "module_name": "Student Group",
99 "color": "#d59919",
100 "icon": "octicon octicon-organization",
101 "label": _("Student Group"),
102 "link": "List/Student Group",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530103 "_doctype": "Student Group",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530104 "type": "list",
105 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530106 },
107 {
108 "module_name": "Course Schedule",
109 "color": "#fd784f",
110 "icon": "octicon octicon-calendar",
111 "label": _("Course Schedule"),
Manas Solanki1fa99252018-03-07 12:08:52 +0530112 "link": "List/Course Schedule/Calendar",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530113 "_doctype": "Course Schedule",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530114 "type": "list",
115 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530116 },
117 {
Manas Solanki966f1412017-11-23 15:22:10 +0530118 "module_name": "Student Attendance Tool",
119 "color": "#C0392B",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530120 "icon": "octicon octicon-checklist",
Manas Solanki966f1412017-11-23 15:22:10 +0530121 "label": _("Student Attendance Tool"),
122 "link": "List/Student Attendance Tool",
123 "_doctype": "Student Attendance Tool",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530124 "type": "list",
125 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530126 },
127 {
128 "module_name": "Course",
129 "color": "#8e44ad",
130 "icon": "octicon octicon-book",
131 "label": _("Course"),
132 "link": "List/Course",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530133 "_doctype": "Course",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530134 "type": "list",
135 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530136 },
137 {
138 "module_name": "Program",
139 "color": "#9b59b6",
140 "icon": "octicon octicon-repo",
141 "label": _("Program"),
142 "link": "List/Program",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530143 "_doctype": "Program",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530144 "type": "list",
145 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530146 },
147 {
148 "module_name": "Student Applicant",
149 "color": "#4d927f",
150 "icon": "octicon octicon-clippy",
151 "label": _("Student Applicant"),
152 "link": "List/Student Applicant",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530153 "_doctype": "Student Applicant",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530154 "type": "list",
155 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530156 },
157 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530158 "module_name": "Fees",
159 "color": "#83C21E",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530160 "icon": "fa fa-money",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530161 "label": _("Fees"),
162 "link": "List/Fees",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530163 "_doctype": "Fees",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530164 "type": "list",
165 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530166 },
167 {
168 "module_name": "Instructor",
169 "color": "#a99e4c",
170 "icon": "octicon octicon-broadcast",
171 "label": _("Instructor"),
172 "link": "List/Instructor",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530173 "_doctype": "Instructor",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530174 "type": "list",
175 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530176 },
177 {
178 "module_name": "Room",
179 "color": "#f22683",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530180 "icon": "fa fa-map-marker",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530181 "label": _("Room"),
182 "link": "List/Room",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530183 "_doctype": "Room",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530184 "type": "list",
185 "hidden": 1
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530186 },
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530187 {
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530188 "module_name": "Patient",
189 "color": "#6BE273",
190 "icon": "fa fa-user",
191 "doctype": "Patient",
192 "type": "link",
system194e195d92018-01-30 19:18:24 +1100193 "link": "List/Patient",
194 "label": _("Patient"),
195 "hidden": 1
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530196 },
197 {
Jamsheer14c6ab02018-10-10 14:44:36 +0530198 "module_name": "Healthcare Practitioner",
199 "color": "#2ecc71",
200 "icon": "fa fa-user-md",
201 "doctype": "Healthcare Practitioner",
202 "type": "link",
203 "link": "List/Healthcare Practitioner",
204 "label": _("Healthcare Practitioner"),
205 "hidden": 1
206 },
207 {
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530208 "module_name": "Patient Appointment",
209 "color": "#934F92",
210 "icon": "fa fa-calendar-plus-o",
211 "doctype": "Patient Appointment",
212 "type": "link",
system194e195d92018-01-30 19:18:24 +1100213 "link": "List/Patient Appointment",
214 "label": _("Patient Appointment"),
215 "hidden": 1
216 },
217 {
Jamsheerf9269112018-07-16 18:08:53 +0530218 "module_name": "Patient Encounter",
system194e195d92018-01-30 19:18:24 +1100219 "color": "#2ecc71",
220 "icon": "fa fa-stethoscope",
Jamsheerf9269112018-07-16 18:08:53 +0530221 "doctype": "Patient Encounter",
system194e195d92018-01-30 19:18:24 +1100222 "type": "link",
Jamsheerf9269112018-07-16 18:08:53 +0530223 "link": "List/Patient Encounter",
224 "label": _("Patient Encounter"),
system194e195d92018-01-30 19:18:24 +1100225 "hidden": 1
226 },
227 {
228 "module_name": "Lab Test",
229 "color": "#7578f6",
230 "icon": "octicon octicon-beaker",
231 "doctype": "Lab Test",
232 "type": "list",
233 "link": "List/Lab Test",
234 "label": _("Lab Test"),
235 "hidden": 1
Raghavendra Kamath2967ec32018-01-17 16:11:09 +0530236 },
Jamsheer14c6ab02018-10-10 14:44:36 +0530237 {
238 "module_name": "Vital Signs",
239 "color": "#2ecc71",
240 "icon": "fa fa-thermometer-empty",
241 "doctype": "Vital Signs",
242 "type": "list",
243 "link": "List/Vital Signs",
244 "label": _("Vital Signs"),
245 "hidden": 1
246 },
247 {
248 "module_name": "Clinical Procedure",
249 "color": "#FF888B",
250 "icon": "fa fa-medkit",
251 "doctype": "Clinical Procedure",
252 "type": "list",
253 "link": "List/Clinical Procedure",
254 "label": _("Clinical Procedure"),
255 "hidden": 1
256 },
257 {
258 "module_name": "Inpatient Record",
259 "color": "#7578f6",
260 "icon": "fa fa-list-alt",
261 "doctype": "Inpatient Record",
262 "type": "list",
263 "link": "List/Inpatient Record",
264 "label": _("Inpatient Record"),
265 "hidden": 1
266 },
Faris Ansarifd345f82017-10-05 11:17:30 +0530267 {
Prateeksha Singh5d227c92018-06-28 09:59:46 +0530268 "module_name": "Hub",
269 "color": "#009248",
270 "icon": "/assets/erpnext/images/hub_logo.svg",
271 "type": "page",
272 "link": "Hub/Item",
273 "label": _("Hub")
274 },
275 {
Manas Solanki2bca5a92017-12-18 13:55:30 +0530276 "module_name": "Data Import",
277 "color": "#FFF168",
278 "reverse": 1,
279 "doctype": "Data Import",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530280 "icon": "octicon octicon-cloud-upload",
Manas Solanki2bca5a92017-12-18 13:55:30 +0530281 "label": _("Data Import"),
282 "link": "List/Data Import",
283 "type": "list"
Faris Ansari367b90e2017-09-29 15:17:48 +0530284 },
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530285 {
Ameya Shenoy5c623682017-12-06 18:36:27 +0530286 "module_name": "Crop",
287 "_doctype": "Crop",
288 "label": _("Crop"),
289 "color": "#8BC34A",
290 "icon": "fa fa-tree",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530291 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530292 "link": "List/Crop",
293 "hidden": 1
294 },
295 {
296 "module_name": "Crop Cycle",
297 "_doctype": "Crop Cycle",
298 "label": _("Crop Cycle"),
299 "color": "#8BC34A",
300 "icon": "fa fa-circle-o-notch",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530301 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530302 "link": "List/Crop Cycle",
303 "hidden": 1
304 },
305 {
306 "module_name": "Fertilizer",
307 "_doctype": "Fertilizer",
308 "label": _("Fertilizer"),
309 "color": "#8BC34A",
310 "icon": "fa fa-leaf",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530311 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530312 "link": "List/Fertilizer",
313 "hidden": 1
314 },
315 {
Alchezdf1eae82018-07-13 12:50:04 +0530316 "module_name": "Location",
317 "_doctype": "Location",
318 "label": _("Location"),
Ameya Shenoy5c623682017-12-06 18:36:27 +0530319 "color": "#8BC34A",
320 "icon": "fa fa-map",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530321 "type": "list",
Alchezdf1eae82018-07-13 12:50:04 +0530322 "link": "List/Location",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530323 "hidden": 1
324 },
325 {
326 "module_name": "Disease",
327 "_doctype": "Disease",
328 "label": _("Disease"),
329 "color": "#8BC34A",
330 "icon": "octicon octicon-bug",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530331 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530332 "link": "List/Disease",
333 "hidden": 1
334 },
335 {
336 "module_name": "Plant Analysis",
337 "_doctype": "Plant Analysis",
338 "label": _("Plant Analysis"),
339 "color": "#8BC34A",
340 "icon": "fa fa-pagelines",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530341 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530342 "link": "List/Plant Analysis",
343 "hidden": 1
344 },
345 {
346 "module_name": "Soil Analysis",
347 "_doctype": "Soil Analysis",
348 "label": _("Soil Analysis"),
349 "color": "#8BC34A",
350 "icon": "fa fa-flask",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530351 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530352 "link": "List/Soil Analysis",
353 "hidden": 1
354 },
355 {
356 "module_name": "Soil Texture",
357 "_doctype": "Soil Texture",
358 "label": _("Soil Texture"),
359 "color": "#8BC34A",
360 "icon": "octicon octicon-beaker",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530361 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530362 "link": "List/Soil Texture",
363 "hidden": 1
364 },
365 {
366 "module_name": "Water Analysis",
367 "_doctype": "Water Analysis",
368 "label": _("Water Analysis"),
369 "color": "#8BC34A",
370 "icon": "fa fa-tint",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530371 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530372 "link": "List/Water Analysis",
373 "hidden": 1
374 },
375 {
376 "module_name": "Weather",
377 "_doctype": "Weather",
378 "label": _("Weather"),
379 "color": "#8BC34A",
380 "icon": "fa fa-sun-o",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530381 "type": "list",
Ameya Shenoy5c623682017-12-06 18:36:27 +0530382 "link": "List/Weather",
383 "hidden": 1
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530384 },
385 {
Vishala68234d2017-11-22 23:11:12 +0530386 "module_name": "Grant Application",
387 "color": "#E9AB17",
388 "icon": "fa fa-gift",
389 "_doctype": "Grant Application",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530390 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530391 "link": "List/Grant Application",
Vishal74116172017-12-05 15:43:19 +0530392 "label": _("Grant Application"),
393 "hidden": 1
394
Vishala68234d2017-11-22 23:11:12 +0530395 },
396 {
397 "module_name": "Donor",
398 "color": "#7F5A58",
399 "icon": "fa fa-tint",
400 "_doctype": "Donor",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530401 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530402 "link": "List/Donor",
Vishal74116172017-12-05 15:43:19 +0530403 "label": _("Donor"),
404 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530405 },
406 {
407 "module_name": "Volunteer",
408 "color": "#7E587E",
409 "icon": "fa fa-angellist",
410 "_doctype": "Volunteer",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530411 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530412 "link": "List/Volunteer",
Vishal74116172017-12-05 15:43:19 +0530413 "label": _("Volunteer"),
414 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530415 },
416 {
417 "module_name": "Member",
418 "color": "#79BAEC",
419 "icon": "fa fa-users",
420 "_doctype": "Member",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530421 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530422 "link": "List/Member",
Vishal74116172017-12-05 15:43:19 +0530423 "label": _("Member"),
424 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530425 },
426 {
427 "module_name": "Chapter",
428 "color": "#3B9C9C",
429 "icon": "fa fa-handshake-o",
430 "_doctype": "Chapter",
Manas Solanki6a415bd2017-12-12 13:24:13 +0530431 "type": "list",
Vishala68234d2017-11-22 23:11:12 +0530432 "link": "List/Chapter",
Vishal74116172017-12-05 15:43:19 +0530433 "label": _("Chapter"),
434 "hidden": 1
Vishala68234d2017-11-22 23:11:12 +0530435 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530436
Prateeksha Singh2c147042019-01-29 10:12:17 +0530437
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530438 # Modules
439 {
440 "module_name": "Accounting",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530441 "category": "Modules",
442 "label": _("Accounting"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530443 "color": "#3498db",
444 "icon": "octicon octicon-repo",
445 "type": "module",
446 "hidden": 1,
447 "description": "Accounts, Banking, Ledgers and Statements, with Billings and Subscriptions."
448 },
449 {
450 "module_name": "Selling",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530451 "category": "Modules",
452 "label": _("Selling"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530453 "color": "#1abc9c",
454 "icon": "octicon octicon-tag",
455 "type": "module",
456 "hidden": 1,
457 "description": "All things Sales, Customer and Products."
458 },
459 {
460 "module_name": "Buying",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530461 "category": "Modules",
462 "label": _("Buying"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530463 "color": "#c0392b",
464 "icon": "octicon octicon-briefcase",
465 "type": "module",
466 "hidden": 1,
Prateeksha Singh2c147042019-01-29 10:12:17 +0530467 "description": "Purchasing, Suppliers and Products. Bluuuuu"
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530468 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530469 {
470 "module_name": "Stock",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530471 "category": "Modules",
472 "label": _("Stock"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530473 "color": "#f39c12",
474 "icon": "octicon octicon-package",
475 "type": "module",
476 "hidden": 1,
477 "description": "Track Stock Transactions, Reports, and Serialized Items and Batches."
478 },
479 {
480 "module_name": "Assets",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530481 "category": "Modules",
482 "label": _("Assets"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530483 "color": "#4286f4",
484 "icon": "octicon octicon-database",
485 "hidden": 1,
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530486 "type": "module",
487 "description": "Asset Maintainance and Tools."
488 },
489 {
490 "module_name": "Projects",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530491 "category": "Modules",
492 "label": _("Projects"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530493 "color": "#8e44ad",
494 "icon": "octicon octicon-rocket",
495 "type": "module",
496 "hidden": 1,
497 "description": "Updates, Timesheets and Activities."
498 },
Prateeksha Singh2c147042019-01-29 10:12:17 +0530499 {
500 "module_name": "CRM",
501 "category": "Modules",
502 "label": _("CRM"),
503 "color": "#EF4DB6",
504 "icon": "octicon octicon-broadcast",
505 "type": "module",
506 "hidden": 1,
507 "description": "Everything in your sales pipeline, from Leads to Customers, to Support."
508 },
509 {
510 "module_name": "HR",
511 "category": "Modules",
512 "label": _("Human Resources"),
513 "color": "#2ecc71",
514 "icon": "octicon octicon-organization",
515 "type": "module",
516 "hidden": 1,
517 "description": "Employee Lifecycle, Payroll, Shifts and Leaves."
518 },
519 {
520 "module_name": "Quality Management",
521 "category": "Modules",
522 "label": _("Quality"),
523 "color": "#1abc9c",
524 "icon": "fa fa-check-square-o",
525 "type": "module",
526 "hidden": 1,
527 "description": "Volunteers, Memberships, Grants and Chapters."
528 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530529
530
531 # Category: "Domains"
532 {
533 "module_name": "Manufacturing",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530534 "category": "Domains",
535 "label": _("Manufacturing"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530536 "color": "#7f8c8d",
537 "icon": "octicon octicon-tools",
538 "type": "module",
539 "hidden": 1,
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530540 "description": "Streamline your production with BOMS, Work Orders and Timesheets."
541 },
542 {
Prateeksha Singh2c147042019-01-29 10:12:17 +0530543 "module_name": "Retail",
544 "category": "Domains",
545 "label": _("Retail"),
546 "color": "#7f8c8d",
547 "icon": "octicon octicon-credit-card",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530548 "type": "module",
549 "hidden": 1,
Prateeksha Singh2c147042019-01-29 10:12:17 +0530550 "description": "Streamline your production with BOMS, Work Orders and Timesheets."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530551 },
552 {
553 "module_name": "Education",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530554 "category": "Domains",
555 "label": _("Education"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530556 "color": "#428B46",
557 "icon": "octicon octicon-mortar-board",
558 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530559 "hidden": 1,
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530560 "description": "Manage Student Admissions, Fees, Subjects and Score Reports."
561 },
Prateeksha Singh2c147042019-01-29 10:12:17 +0530562
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530563 {
564 "module_name": "Healthcare",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530565 "category": "Domains",
566 "label": _("Healthcare"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530567 "color": "#FF888B",
568 "icon": "fa fa-heartbeat",
569 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530570 "hidden": 1,
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530571 "description": "Patients appointments, procedures and tests, with diagnosis reports and drug prescriptions."
572 },
573 {
574 "module_name": "Agriculture",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530575 "category": "Domains",
576 "label": _("Agriculture"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530577 "color": "#8BC34A",
578 "icon": "octicon octicon-globe",
579 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530580 "hidden": 1,
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530581 "description": "Crop Cycles, Land Areas and Soil and Plant Analysis."
582 },
583 {
584 "module_name": "Hotels",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530585 "category": "Domains",
586 "label": _("Hotels"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530587 "color": "#EA81E8",
588 "icon": "fa fa-bed",
589 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530590 "hidden": 1,
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530591 "description": "Manage Hotel Rooms, Pricing, Reservation and Amenities."
592 },
593
Vishala68234d2017-11-22 23:11:12 +0530594 {
Vishalca614532017-09-11 15:13:16 +0530595 "module_name": "Non Profit",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530596 "category": "Domains",
597 "label": _("Non Profit"),
Vishalca614532017-09-11 15:13:16 +0530598 "color": "#DE2B37",
599 "icon": "octicon octicon-heart",
600 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530601 "hidden": 1,
Prateeksha Singh2c147042019-01-29 10:12:17 +0530602 "description": "Make benefiting others easier with Volunteers, Memberships, Grants and Chapters."
Himanshu0209ef02018-12-25 17:42:31 +0530603 },
604 {
Prateeksha Singh2c147042019-01-29 10:12:17 +0530605 "module_name": "Restaurant",
606 "category": "Domains",
607 "label": _("Restaurant"),
608 "color": "#EA81E8",
609 "icon": "fa fa-cutlery",
610 "_doctype": "Restaurant",
Himanshu0209ef02018-12-25 17:42:31 +0530611 "type": "module",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530612 "link": "List/Restaurant",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530613 "hidden": 1,
Prateeksha Singh2c147042019-01-29 10:12:17 +0530614 "description": "Menu, Orders and Table Reservations."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530615 },
616
617
618 {
619 "module_name": "Learn",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530620 "category": "Administration",
621 "label": _("Learn"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530622 "color": "#FF888B",
623 "icon": "octicon octicon-device-camera-video",
624 "type": "module",
625 "is_help": True,
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530626 "description": "Explore Help Articles and Videos."
627 },
628 {
629 "module_name": 'Marketplace',
Prateeksha Singh2c147042019-01-29 10:12:17 +0530630 "category": "Places",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530631 "label": _('Marketplace'),
Prateeksha Singh2c147042019-01-29 10:12:17 +0530632 "icon": "octicon octicon-star",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530633 "type": 'link',
Prateeksha Singh2c147042019-01-29 10:12:17 +0530634 "link": '#marketplace/home',
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530635 "color": '#FF4136',
636 'standard': 1,
Prateeksha Singh2c147042019-01-29 10:12:17 +0530637 "description": "Publish items to other ERPNext users and start a conversation."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530638 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530639 ]