blob: a8ce6a7a68c5ce553008d9ed6f1cb1232b2c76c0 [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",
Rushabh Mehtaeb961372016-01-04 15:48:37 +053035 "link": "pos",
36 "label": _("POS")
Rushabh Mehta72e17192014-08-08 15:30:49 +053037 },
Nabin Haite6085392014-05-16 19:56:06 +053038 "Projects": {
39 "color": "#8e44ad",
40 "icon": "icon-puzzle-piece",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053041 "icon": "octicon octicon-rocket",
Nabin Haite6085392014-05-16 19:56:06 +053042 "type": "module"
43 },
44 "Selling": {
45 "color": "#1abc9c",
46 "icon": "icon-tag",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053047 "icon": "octicon octicon-tag",
Nabin Haite6085392014-05-16 19:56:06 +053048 "type": "module"
49 },
Rushabh Mehta60cfccb2015-02-17 10:36:54 +053050 "CRM": {
51 "color": "#EF4DB6",
52 "icon": "octicon octicon-broadcast",
53 "type": "module"
54 },
Nabin Haite6085392014-05-16 19:56:06 +053055 "Stock": {
56 "color": "#f39c12",
57 "icon": "icon-truck",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053058 "icon": "octicon octicon-package",
Nabin Haite6085392014-05-16 19:56:06 +053059 "type": "module"
60 },
61 "Support": {
62 "color": "#2c3e50",
63 "icon": "icon-phone",
Rushabh Mehta7b822ab2014-12-31 14:42:23 +053064 "icon": "octicon octicon-issue-opened",
Nabin Haite6085392014-05-16 19:56:06 +053065 "type": "module"
Rushabh Mehta67712402015-05-25 18:30:53 +053066 },
67 "Learn": {
Rushabh Mehta7d23e422015-11-02 10:45:18 +053068 "color": "#FF888B",
Rushabh Mehta67712402015-05-25 18:30:53 +053069 "force_show": True,
Rushabh Mehta7d23e422015-11-02 10:45:18 +053070 "icon": "octicon octicon-device-camera-video",
Rushabh Mehta67712402015-05-25 18:30:53 +053071 "type": "module",
Rushabh Mehtaeb961372016-01-04 15:48:37 +053072 "is_help": True,
73 "label": _("Learn")
Nabin Haite6085392014-05-16 19:56:06 +053074 }
Rushabh Mehtab63d5502013-12-23 16:09:00 +053075 }