d35354cc06
Conflicts: erpnext/__version__.py erpnext/accounts/doctype/budget_distribution/test_budget_distribution.py erpnext/accounts/doctype/chart_of_accounts/charts/account_properties.py erpnext/hooks.py erpnext/patches.txt erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py erpnext/stock/get_item_details.py erpnext/translations/ar.csv erpnext/translations/bs.csv erpnext/translations/ca.csv erpnext/translations/el.csv erpnext/translations/es.csv erpnext/translations/fr.csv erpnext/translations/hr.csv erpnext/translations/id.csv erpnext/translations/is.csv erpnext/translations/ja.csv erpnext/translations/nl.csv erpnext/translations/pl.csv erpnext/translations/pt-BR.csv erpnext/translations/ru.csv erpnext/translations/tr.csv erpnext/translations/zh-cn.csv erpnext/translations/zh-tw.csv setup.py
67 lines
1.3 KiB
Python
67 lines
1.3 KiB
Python
from __future__ import unicode_literals
|
|
from frappe import _
|
|
|
|
def get_data():
|
|
return {
|
|
"Accounts": {
|
|
"color": "#3498db",
|
|
"icon": "octicon octicon-repo",
|
|
"type": "module"
|
|
},
|
|
"Buying": {
|
|
"color": "#c0392b",
|
|
"icon": "icon-shopping-cart",
|
|
"icon": "octicon octicon-briefcase",
|
|
"type": "module"
|
|
},
|
|
"HR": {
|
|
"color": "#2ecc71",
|
|
"icon": "icon-group",
|
|
"icon": "octicon octicon-organization",
|
|
"label": _("Human Resources"),
|
|
"type": "module"
|
|
},
|
|
"Manufacturing": {
|
|
"color": "#7f8c8d",
|
|
"icon": "icon-cogs",
|
|
"icon": "octicon octicon-tools",
|
|
"type": "module"
|
|
},
|
|
"POS": {
|
|
"color": "#589494",
|
|
"icon": "icon-th",
|
|
"icon": "octicon octicon-credit-card",
|
|
"type": "page",
|
|
"link": "pos"
|
|
},
|
|
"Projects": {
|
|
"color": "#8e44ad",
|
|
"icon": "icon-puzzle-piece",
|
|
"icon": "octicon octicon-rocket",
|
|
"type": "module"
|
|
},
|
|
"Selling": {
|
|
"color": "#1abc9c",
|
|
"icon": "icon-tag",
|
|
"icon": "octicon octicon-tag",
|
|
"type": "module"
|
|
},
|
|
"CRM": {
|
|
"color": "#EF4DB6",
|
|
"icon": "octicon octicon-broadcast",
|
|
"type": "module"
|
|
},
|
|
"Stock": {
|
|
"color": "#f39c12",
|
|
"icon": "icon-truck",
|
|
"icon": "octicon octicon-package",
|
|
"type": "module"
|
|
},
|
|
"Support": {
|
|
"color": "#2c3e50",
|
|
"icon": "icon-phone",
|
|
"icon": "octicon octicon-issue-opened",
|
|
"type": "module"
|
|
}
|
|
}
|