blob: dbeb8d1db7c195199f8538ce04e984860f6033e3 [file] [log] [blame]
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05301from frappe import _
Rushabh Mehta22ababb2014-02-07 18:12:43 +05302
Nabin Haite6085392014-05-16 19:56:06 +05303def get_data():
4 return {
5 "Accounts": {
6 "color": "#3498db",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +05307 "icon": "octicon octicon-repo",
Nabin Haite6085392014-05-16 19:56:06 +05308 "type": "module"
9 },
Nabin Haite6085392014-05-16 19:56:06 +053010 "Buying": {
11 "color": "#c0392b",
12 "icon": "icon-shopping-cart",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053013 "icon": "octicon octicon-briefcase",
Nabin Haite6085392014-05-16 19:56:06 +053014 "type": "module"
15 },
16 "HR": {
17 "color": "#2ecc71",
18 "icon": "icon-group",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053019 "icon": "octicon octicon-organization",
Nabin Haite6085392014-05-16 19:56:06 +053020 "label": _("Human Resources"),
21 "type": "module"
22 },
23 "Manufacturing": {
24 "color": "#7f8c8d",
25 "icon": "icon-cogs",
Rushabh Mehtaff582612015-01-02 14:40:48 +053026 "icon": "octicon octicon-tools",
Nabin Haite6085392014-05-16 19:56:06 +053027 "type": "module"
28 },
Rushabh Mehta72e17192014-08-08 15:30:49 +053029 "POS": {
30 "color": "#589494",
31 "icon": "icon-th",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053032 "icon": "octicon octicon-credit-card",
Rushabh Mehta72e17192014-08-08 15:30:49 +053033 "type": "page",
34 "link": "pos"
35 },
Nabin Haite6085392014-05-16 19:56:06 +053036 "Projects": {
37 "color": "#8e44ad",
38 "icon": "icon-puzzle-piece",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053039 "icon": "octicon octicon-rocket",
Nabin Haite6085392014-05-16 19:56:06 +053040 "type": "module"
41 },
42 "Selling": {
43 "color": "#1abc9c",
44 "icon": "icon-tag",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053045 "icon": "octicon octicon-tag",
Nabin Haite6085392014-05-16 19:56:06 +053046 "type": "module"
47 },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053048 "CRM": {
49 "color": "#EF4DB6",
50 "icon": "octicon octicon-broadcast",
51 "type": "module"
52 },
Nabin Haite6085392014-05-16 19:56:06 +053053 "Stock": {
54 "color": "#f39c12",
55 "icon": "icon-truck",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053056 "icon": "octicon octicon-package",
Nabin Haite6085392014-05-16 19:56:06 +053057 "type": "module"
58 },
59 "Support": {
60 "color": "#2c3e50",
61 "icon": "icon-phone",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053062 "icon": "octicon octicon-issue-opened",
Nabin Haite6085392014-05-16 19:56:06 +053063 "type": "module"
64 }
Rushabh Mehtab63d5502013-12-23 16:09:00 +053065 }