blob: 498d100a12034d345810a5ae2cac16f47186a950 [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():
5 return {
6 "Accounts": {
7 "color": "#3498db",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +05308 "icon": "octicon octicon-repo",
Nabin Haite6085392014-05-16 19:56:06 +05309 "type": "module"
10 },
Nabin Haite6085392014-05-16 19:56:06 +053011 "Buying": {
12 "color": "#c0392b",
13 "icon": "icon-shopping-cart",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053014 "icon": "octicon octicon-briefcase",
Nabin Haite6085392014-05-16 19:56:06 +053015 "type": "module"
16 },
17 "HR": {
18 "color": "#2ecc71",
19 "icon": "icon-group",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053020 "icon": "octicon octicon-organization",
Nabin Haite6085392014-05-16 19:56:06 +053021 "label": _("Human Resources"),
22 "type": "module"
23 },
24 "Manufacturing": {
25 "color": "#7f8c8d",
26 "icon": "icon-cogs",
Rushabh Mehtaff582612015-01-02 14:40:48 +053027 "icon": "octicon octicon-tools",
Nabin Haite6085392014-05-16 19:56:06 +053028 "type": "module"
29 },
Rushabh Mehta72e17192014-08-08 15:30:49 +053030 "POS": {
31 "color": "#589494",
32 "icon": "icon-th",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053033 "icon": "octicon octicon-credit-card",
Rushabh Mehta72e17192014-08-08 15:30:49 +053034 "type": "page",
35 "link": "pos"
36 },
Nabin Haite6085392014-05-16 19:56:06 +053037 "Projects": {
38 "color": "#8e44ad",
39 "icon": "icon-puzzle-piece",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053040 "icon": "octicon octicon-rocket",
Nabin Haite6085392014-05-16 19:56:06 +053041 "type": "module"
42 },
43 "Selling": {
44 "color": "#1abc9c",
45 "icon": "icon-tag",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053046 "icon": "octicon octicon-tag",
Nabin Haite6085392014-05-16 19:56:06 +053047 "type": "module"
48 },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053049 "CRM": {
50 "color": "#EF4DB6",
51 "icon": "octicon octicon-broadcast",
52 "type": "module"
53 },
Nabin Haite6085392014-05-16 19:56:06 +053054 "Stock": {
55 "color": "#f39c12",
56 "icon": "icon-truck",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053057 "icon": "octicon octicon-package",
Nabin Haite6085392014-05-16 19:56:06 +053058 "type": "module"
59 },
60 "Support": {
61 "color": "#2c3e50",
62 "icon": "icon-phone",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053063 "icon": "octicon octicon-issue-opened",
Nabin Haite6085392014-05-16 19:56:06 +053064 "type": "module"
Rushabh Mehta67712402015-05-25 18:30:53 +053065 },
66 "Learn": {
Anand Doshia5e9c712015-07-17 15:55:10 +053067 "color": "#FCB868",
Rushabh Mehta67712402015-05-25 18:30:53 +053068 "force_show": True,
69 "icon": "icon-facetime-video",
70 "type": "module",
71 "is_help": True
Nabin Haite6085392014-05-16 19:56:06 +053072 }
Rushabh Mehtab63d5502013-12-23 16:09:00 +053073 }