blob: 1b0a45ec9accc26f29399e687b07fe57408609dc [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",
59 "type": "module",
60 "_doctype": "Lead",
61 "type": "link",
62 "link": "List/Lead"
63 },
Rushabh Mehta02772442016-04-20 18:45:46 +053064 {
Rushabh Mehta769dda02016-09-15 15:15:45 +053065 "module_name": "Profit and Loss Statement",
Rushabh Mehta02772442016-04-20 18:45:46 +053066 "_doctype": "Account",
67 "color": "#3498db",
68 "icon": "octicon octicon-repo",
69 "type": "link",
70 "link": "query-report/Profit and Loss Statement"
71 },
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053072
73 # old
74 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053075 "module_name": "Accounts",
Nabin Haite6085392014-05-16 19:56:06 +053076 "color": "#3498db",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053077 "icon": "octicon octicon-repo",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053078 "type": "module",
79 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +053080 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053081 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053082 "module_name": "Stock",
83 "color": "#f39c12",
Rushabh Mehta2167ff52016-12-07 11:08:48 +053084 "icon": "fa fa-truck",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053085 "icon": "octicon octicon-package",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053086 "type": "module",
87 "hidden": 1
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053088 },
89 {
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053090 "module_name": "CRM",
91 "color": "#EF4DB6",
92 "icon": "octicon octicon-broadcast",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053093 "type": "module",
94 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053095 },
96 {
97 "module_name": "Selling",
98 "color": "#1abc9c",
Rushabh Mehta2167ff52016-12-07 11:08:48 +053099 "icon": "fa fa-tag",
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530100 "icon": "octicon octicon-tag",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530101 "type": "module",
102 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530103 },
104 {
105 "module_name": "Buying",
Nabin Haite6085392014-05-16 19:56:06 +0530106 "color": "#c0392b",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530107 "icon": "fa fa-shopping-cart",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530108 "icon": "octicon octicon-briefcase",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530109 "type": "module",
110 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530111 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530112 {
113 "module_name": "HR",
Nabin Haite6085392014-05-16 19:56:06 +0530114 "color": "#2ecc71",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530115 "icon": "fa fa-group",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530116 "icon": "octicon octicon-organization",
Nabin Haite6085392014-05-16 19:56:06 +0530117 "label": _("Human Resources"),
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": "Manufacturing",
Nabin Haite6085392014-05-16 19:56:06 +0530123 "color": "#7f8c8d",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530124 "icon": "fa fa-cogs",
Rushabh Mehtaff582612015-01-02 14:40:48 +0530125 "icon": "octicon octicon-tools",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530126 "type": "module",
127 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530128 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530129 {
130 "module_name": "POS",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530131 "color": "#589494",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530132 "icon": "octicon octicon-credit-card",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530133 "type": "page",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530134 "link": "pos",
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530135 "label": _("POS")
Rushabh Mehta72e17192014-08-08 15:30:49 +0530136 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530137 {
138 "module_name": "Projects",
Nabin Haite6085392014-05-16 19:56:06 +0530139 "color": "#8e44ad",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530140 "icon": "fa fa-puzzle-piece",
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 Mehta2167ff52016-12-07 11:08:48 +0530148 "icon": "fa fa-phone",
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",
167 "label": _("Maintenance")
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",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530176 "type": "list"
177 },
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",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530185 "type": "list"
186 },
187 {
188 "module_name": "Course Schedule",
189 "color": "#fd784f",
190 "icon": "octicon octicon-calendar",
191 "label": _("Course Schedule"),
192 "link": "Calendar/Course Schedule",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530193 "_doctype": "Course Schedule",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530194 "type": "list"
195 },
196 {
Manas Solanki966f1412017-11-23 15:22:10 +0530197 "module_name": "Student Attendance Tool",
198 "color": "#C0392B",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530199 "icon": "octicon octicon-checklist",
Manas Solanki966f1412017-11-23 15:22:10 +0530200 "label": _("Student Attendance Tool"),
201 "link": "List/Student Attendance Tool",
202 "_doctype": "Student Attendance Tool",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530203 "type": "list"
204 },
205 {
206 "module_name": "Course",
207 "color": "#8e44ad",
208 "icon": "octicon octicon-book",
209 "label": _("Course"),
210 "link": "List/Course",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530211 "_doctype": "Course",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530212 "type": "list"
213 },
214 {
215 "module_name": "Program",
216 "color": "#9b59b6",
217 "icon": "octicon octicon-repo",
218 "label": _("Program"),
219 "link": "List/Program",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530220 "_doctype": "Program",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530221 "type": "list"
222 },
223 {
224 "module_name": "Student Applicant",
225 "color": "#4d927f",
226 "icon": "octicon octicon-clippy",
227 "label": _("Student Applicant"),
228 "link": "List/Student Applicant",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530229 "_doctype": "Student Applicant",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530230 "type": "list"
231 },
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",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530239 "type": "list"
240 },
241 {
242 "module_name": "Instructor",
243 "color": "#a99e4c",
244 "icon": "octicon octicon-broadcast",
245 "label": _("Instructor"),
246 "link": "List/Instructor",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530247 "_doctype": "Instructor",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530248 "type": "list"
249 },
250 {
251 "module_name": "Room",
252 "color": "#f22683",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530253 "icon": "fa fa-map-marker",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530254 "label": _("Room"),
255 "link": "List/Room",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530256 "_doctype": "Room",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530257 "type": "list"
258 },
259 {
Manas Solanki966f1412017-11-23 15:22:10 +0530260 "module_name": "Education",
261 "color": "#428B46",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530262 "icon": "octicon octicon-mortar-board",
263 "type": "module",
Manas Solanki966f1412017-11-23 15:22:10 +0530264 "label": _("Education")
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530265 },
266 {
267 "module_name": "Healthcare",
268 "color": "#FF888B",
269 "icon": "octicon octicon-plus",
270 "type": "module",
Faris Ansarifd345f82017-10-05 11:17:30 +0530271 "label": _("Healthcare"),
272 },
273 {
274 "module_name": "Hub",
275 "color": "#009248",
276 "icon": "/assets/erpnext/images/hub_logo.svg",
277 "type": "page",
278 "link": "hub",
279 "label": _("Hub")
Faris Ansari367b90e2017-09-29 15:17:48 +0530280 },
281 {
282 "module_name": "Data Import Tool",
283 "color": "#7f8c8d",
284 "icon": "octicon octicon-circuit-board",
285 "type": "page",
286 "link": "data-import-tool",
287 "label": _("Data Import Tool")
288 },
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +0530289 {
290 "module_name": "Restaurant",
291 "color": "#EA81E8",
292 "icon": "🍔",
293 "_doctype": "Restaurant",
294 "link": "List/Restaurant",
295 "label": _("Restaurant")
Kanchan Chauhane58a41a2017-10-17 15:17:24 +0530296 },
297 {
298 "module_name": "Assets",
299 "color": "#4286f4",
300 "icon": "octicon octicon-database",
301 "type": "module"
302 },
Vishalca614532017-09-11 15:13:16 +0530303 {
304 "module_name": "Non Profit",
305 "color": "#DE2B37",
306 "icon": "octicon octicon-heart",
307 "type": "module",
308 "label": _("Non Profit")
309 }
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530310 ]