blob: 863ad6dd0df798d994a3609487366066ea29f70a [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 {
7 "module_name": "Accounts",
Nabin Haite6085392014-05-16 19:56:06 +05308 "color": "#3498db",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +05309 "icon": "octicon octicon-repo",
Nabin Haite6085392014-05-16 19:56:06 +053010 "type": "module"
11 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053012 {
13 "module_name": "CRM",
14 "color": "#EF4DB6",
15 "icon": "octicon octicon-broadcast",
16 "type": "module"
17 },
18 {
19 "module_name": "Selling",
20 "color": "#1abc9c",
21 "icon": "icon-tag",
22 "icon": "octicon octicon-tag",
23 "type": "module"
24 },
25 {
26 "module_name": "Buying",
Nabin Haite6085392014-05-16 19:56:06 +053027 "color": "#c0392b",
28 "icon": "icon-shopping-cart",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053029 "icon": "octicon octicon-briefcase",
Nabin Haite6085392014-05-16 19:56:06 +053030 "type": "module"
31 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053032 {
33 "module_name": "HR",
Nabin Haite6085392014-05-16 19:56:06 +053034 "color": "#2ecc71",
35 "icon": "icon-group",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053036 "icon": "octicon octicon-organization",
Nabin Haite6085392014-05-16 19:56:06 +053037 "label": _("Human Resources"),
38 "type": "module"
39 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053040 {
41 "module_name": "Manufacturing",
Nabin Haite6085392014-05-16 19:56:06 +053042 "color": "#7f8c8d",
43 "icon": "icon-cogs",
Rushabh Mehtaff582612015-01-02 14:40:48 +053044 "icon": "octicon octicon-tools",
Nabin Haite6085392014-05-16 19:56:06 +053045 "type": "module"
46 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053047 {
48 "module_name": "POS",
Rushabh Mehta72e17192014-08-08 15:30:49 +053049 "color": "#589494",
50 "icon": "icon-th",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053051 "icon": "octicon octicon-credit-card",
Rushabh Mehta72e17192014-08-08 15:30:49 +053052 "type": "page",
Rushabh Mehtaeb961372016-01-04 15:48:37 +053053 "link": "pos",
54 "label": _("POS")
Rushabh Mehta72e17192014-08-08 15:30:49 +053055 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053056 {
57 "module_name": "Projects",
Nabin Haite6085392014-05-16 19:56:06 +053058 "color": "#8e44ad",
59 "icon": "icon-puzzle-piece",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053060 "icon": "octicon octicon-rocket",
Nabin Haite6085392014-05-16 19:56:06 +053061 "type": "module"
62 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053063 {
64 "module_name": "Stock",
Nabin Haite6085392014-05-16 19:56:06 +053065 "color": "#f39c12",
66 "icon": "icon-truck",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053067 "icon": "octicon octicon-package",
Nabin Haite6085392014-05-16 19:56:06 +053068 "type": "module"
69 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053070 {
71 "module_name": "Support",
Nabin Haite6085392014-05-16 19:56:06 +053072 "color": "#2c3e50",
73 "icon": "icon-phone",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053074 "icon": "octicon octicon-issue-opened",
Nabin Haite6085392014-05-16 19:56:06 +053075 "type": "module"
Rushabh Mehta67712402015-05-25 18:30:53 +053076 },
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053077 {
78 "module_name": "Learn",
Rushabh Mehta7d23e422015-11-02 10:45:18 +053079 "color": "#FF888B",
Rushabh Mehta7d23e422015-11-02 10:45:18 +053080 "icon": "octicon octicon-device-camera-video",
Rushabh Mehta67712402015-05-25 18:30:53 +053081 "type": "module",
Rushabh Mehtaeb961372016-01-04 15:48:37 +053082 "is_help": True,
83 "label": _("Learn")
Nabin Haite6085392014-05-16 19:56:06 +053084 }
Rushabh Mehta1bf440b2016-01-14 18:14:50 +053085 ]