brotherton-erpnext/erpnext/config/desktop.py

76 lines
1.5 KiB
Python
Raw Normal View History

from __future__ import unicode_literals
2014-02-14 10:17:51 +00:00
from frappe import _
2014-02-07 12:42:43 +00:00
def get_data():
return {
"Accounts": {
"color": "#3498db",
2014-12-31 09:12:23 +00:00
"icon": "octicon octicon-repo",
"type": "module"
},
"Buying": {
"color": "#c0392b",
"icon": "icon-shopping-cart",
2014-12-31 09:12:23 +00:00
"icon": "octicon octicon-briefcase",
"type": "module"
},
"HR": {
"color": "#2ecc71",
"icon": "icon-group",
2014-12-31 09:12:23 +00:00
"icon": "octicon octicon-organization",
"label": _("Human Resources"),
"type": "module"
},
"Manufacturing": {
"color": "#7f8c8d",
"icon": "icon-cogs",
2015-01-02 09:10:48 +00:00
"icon": "octicon octicon-tools",
"type": "module"
},
2014-08-08 10:00:49 +00:00
"POS": {
"color": "#589494",
"icon": "icon-th",
2014-12-31 09:12:23 +00:00
"icon": "octicon octicon-credit-card",
2014-08-08 10:00:49 +00:00
"type": "page",
2016-01-04 10:18:37 +00:00
"link": "pos",
"label": _("POS")
2014-08-08 10:00:49 +00:00
},
"Projects": {
"color": "#8e44ad",
"icon": "icon-puzzle-piece",
2014-12-31 09:12:23 +00:00
"icon": "octicon octicon-rocket",
"type": "module"
},
"Selling": {
"color": "#1abc9c",
"icon": "icon-tag",
2014-12-31 09:12:23 +00:00
"icon": "octicon octicon-tag",
"type": "module"
},
2015-02-17 05:06:54 +00:00
"CRM": {
"color": "#EF4DB6",
"icon": "octicon octicon-broadcast",
"type": "module"
},
"Stock": {
"color": "#f39c12",
"icon": "icon-truck",
2014-12-31 09:12:23 +00:00
"icon": "octicon octicon-package",
"type": "module"
},
"Support": {
"color": "#2c3e50",
"icon": "icon-phone",
2014-12-31 09:12:23 +00:00
"icon": "octicon octicon-issue-opened",
"type": "module"
},
"Learn": {
"color": "#FF888B",
"force_show": True,
"icon": "octicon octicon-device-camera-video",
"type": "module",
2016-01-04 10:18:37 +00:00
"is_help": True,
"label": _("Learn")
}
}