blob: ef1ff103fa784a686a48a008e4a0a9996bf8bcb4 [file] [log] [blame]
Anand Doshid57e7932015-02-24 12:24:53 +05301from __future__ import unicode_literals
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05302from frappe import _
Rushabh Mehta22ababb2014-02-07 18:12:43 +05303
Nabin Haite6085392014-05-16 19:56:06 +05304def get_data():
Rushabh Mehta1bf440b2016-01-14 18:14:50 +05305 return [
6 {
Rushabh Mehta0e2dd852016-04-13 17:21:57 +05307 "module_name": "Item",
8 "_doctype": "Item",
9 "color": "#f39c12",
10 "icon": "octicon octicon-package",
11 "type": "link",
12 "link": "List/Item"
13 },
14 {
15 "module_name": "Customer",
16 "_doctype": "Customer",
17 "color": "#1abc9c",
18 "icon": "octicon octicon-tag",
19 "type": "link",
20 "link": "List/Customer"
21 },
22 {
23 "module_name": "Supplier",
24 "_doctype": "Supplier",
25 "color": "#c0392b",
26 "icon": "octicon octicon-briefcase",
27 "type": "link",
28 "link": "List/Supplier"
29 },
30 {
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053031 "_doctype": "Employee",
32 "module_name": "Employee",
33 "color": "#2ecc71",
34 "icon": "octicon octicon-organization",
35 "type": "link",
36 "link": "List/Employee"
37 },
38 {
39 "module_name": "Project",
40 "_doctype": "Project",
41 "color": "#8e44ad",
42 "icon": "octicon octicon-rocket",
43 "type": "link",
44 "link": "List/Project"
45 },
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",
57 "type": "module",
58 "_doctype": "Lead",
59 "type": "link",
60 "link": "List/Lead"
61 },
Rushabh Mehta02772442016-04-20 18:45:46 +053062 {
Rushabh Mehta769dda02016-09-15 15:15:45 +053063 "module_name": "Profit and Loss Statement",
Rushabh Mehta02772442016-04-20 18:45:46 +053064 "_doctype": "Account",
65 "color": "#3498db",
66 "icon": "octicon octicon-repo",
67 "type": "link",
68 "link": "query-report/Profit and Loss Statement"
69 },
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053070
71 # old
72 {
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 Mehta2167ff52016-12-07 11:08:48 +053082 "icon": "fa fa-truck",
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 Mehta2167ff52016-12-07 11:08:48 +053097 "icon": "fa fa-tag",
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053098 "icon": "octicon octicon-tag",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +053099 "type": "module",
100 "hidden": 1
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530101 },
102 {
103 "module_name": "Buying",
Nabin Haite6085392014-05-16 19:56:06 +0530104 "color": "#c0392b",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530105 "icon": "fa fa-shopping-cart",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530106 "icon": "octicon octicon-briefcase",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530107 "type": "module",
108 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530109 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530110 {
111 "module_name": "HR",
Nabin Haite6085392014-05-16 19:56:06 +0530112 "color": "#2ecc71",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530113 "icon": "fa fa-group",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530114 "icon": "octicon octicon-organization",
Nabin Haite6085392014-05-16 19:56:06 +0530115 "label": _("Human Resources"),
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530116 "type": "module",
117 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530118 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530119 {
120 "module_name": "Manufacturing",
Nabin Haite6085392014-05-16 19:56:06 +0530121 "color": "#7f8c8d",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530122 "icon": "fa fa-cogs",
Rushabh Mehtaff582612015-01-02 14:40:48 +0530123 "icon": "octicon octicon-tools",
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530124 "type": "module",
125 "hidden": 1
Nabin Haite6085392014-05-16 19:56:06 +0530126 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530127 {
128 "module_name": "POS",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530129 "color": "#589494",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530130 "icon": "fa fa-th",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +0530131 "icon": "octicon octicon-credit-card",
Rushabh Mehta72e17192014-08-08 15:30:49 +0530132 "type": "page",
Rushabh Mehtaeb961372016-01-04 15:48:37 +0530133 "link": "pos",
Rohit Waghchauree0934d12016-05-11 15:04:57 +0530134 "label": _("POS")
Rushabh Mehta72e17192014-08-08 15:30:49 +0530135 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530136 {
137 "module_name": "Projects",
Nabin Haite6085392014-05-16 19:56:06 +0530138 "color": "#8e44ad",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530139 "icon": "fa fa-puzzle-piece",
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 Mehta2167ff52016-12-07 11:08:48 +0530147 "icon": "fa fa-phone",
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 {
153 "module_name": "Learn",
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,
Rushabh Mehta0e2dd852016-04-13 17:21:57 +0530158 "label": _("Learn"),
159 "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",
166 "label": _("Maintenance")
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",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530175 "type": "list"
176 },
177 {
178 "module_name": "Student Group",
179 "color": "#d59919",
180 "icon": "octicon octicon-organization",
181 "label": _("Student Group"),
182 "link": "List/Student Group",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530183 "_doctype": "Student Group",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530184 "type": "list"
185 },
186 {
187 "module_name": "Course Schedule",
188 "color": "#fd784f",
189 "icon": "octicon octicon-calendar",
190 "label": _("Course Schedule"),
191 "link": "Calendar/Course Schedule",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530192 "_doctype": "Course Schedule",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530193 "type": "list"
194 },
195 {
196 "module_name": "Student Attendance",
197 "color": "#3aacba",
198 "icon": "octicon octicon-checklist",
199 "label": _("Student Attendance"),
200 "link": "List/Student Attendance",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530201 "_doctype": "Student Attendance",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530202 "type": "list"
203 },
204 {
205 "module_name": "Course",
206 "color": "#8e44ad",
207 "icon": "octicon octicon-book",
208 "label": _("Course"),
209 "link": "List/Course",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530210 "_doctype": "Course",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530211 "type": "list"
212 },
213 {
214 "module_name": "Program",
215 "color": "#9b59b6",
216 "icon": "octicon octicon-repo",
217 "label": _("Program"),
218 "link": "List/Program",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530219 "_doctype": "Program",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530220 "type": "list"
221 },
222 {
223 "module_name": "Student Applicant",
224 "color": "#4d927f",
225 "icon": "octicon octicon-clippy",
226 "label": _("Student Applicant"),
227 "link": "List/Student Applicant",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530228 "_doctype": "Student Applicant",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530229 "type": "list"
230 },
231 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530232 "module_name": "Fees",
233 "color": "#83C21E",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530234 "icon": "fa fa-money",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530235 "label": _("Fees"),
236 "link": "List/Fees",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530237 "_doctype": "Fees",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530238 "type": "list"
239 },
240 {
241 "module_name": "Instructor",
242 "color": "#a99e4c",
243 "icon": "octicon octicon-broadcast",
244 "label": _("Instructor"),
245 "link": "List/Instructor",
Rushabh Mehta11900e82016-07-22 10:58:56 +0530246 "_doctype": "Instructor",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530247 "type": "list"
248 },
249 {
250 "module_name": "Room",
251 "color": "#f22683",
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530252 "icon": "fa fa-map-marker",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530253 "label": _("Room"),
254 "link": "List/Room",
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530255 "_doctype": "Room",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530256 "type": "list"
257 },
258 {
259 "module_name": "Schools",
260 "color": "#DE2B37",
261 "icon": "octicon octicon-mortar-board",
262 "type": "module",
263 "label": _("Schools")
Rushabh Mehtaf0569742017-09-13 12:52:30 +0530264 },
265 {
266 "module_name": "Healthcare",
267 "color": "#FF888B",
268 "icon": "octicon octicon-plus",
269 "type": "module",
270 "label": _("Healthcare")
Nabin Haite6085392014-05-16 19:56:06 +0530271 }
Rushabh Mehta1bf440b2016-01-14 18:14:50 +0530272 ]