Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 1 | from frappe import _ |
Rushabh Mehta | 22ababb | 2014-02-07 18:12:43 +0530 | [diff] [blame] | 2 | |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 3 | def get_data(): |
| 4 | return { |
| 5 | "Accounts": { |
| 6 | "color": "#3498db", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 7 | "icon": "octicon octicon-repo", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 8 | "type": "module" |
| 9 | }, |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 10 | "Buying": { |
| 11 | "color": "#c0392b", |
| 12 | "icon": "icon-shopping-cart", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 13 | "icon": "octicon octicon-briefcase", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 14 | "type": "module" |
| 15 | }, |
| 16 | "HR": { |
| 17 | "color": "#2ecc71", |
| 18 | "icon": "icon-group", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 19 | "icon": "octicon octicon-organization", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 20 | "label": _("Human Resources"), |
| 21 | "type": "module" |
| 22 | }, |
| 23 | "Manufacturing": { |
| 24 | "color": "#7f8c8d", |
| 25 | "icon": "icon-cogs", |
Rushabh Mehta | ff58261 | 2015-01-02 14:40:48 +0530 | [diff] [blame] | 26 | "icon": "octicon octicon-tools", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 27 | "type": "module" |
| 28 | }, |
Rushabh Mehta | 72e1719 | 2014-08-08 15:30:49 +0530 | [diff] [blame] | 29 | "POS": { |
| 30 | "color": "#589494", |
| 31 | "icon": "icon-th", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 32 | "icon": "octicon octicon-credit-card", |
Rushabh Mehta | 72e1719 | 2014-08-08 15:30:49 +0530 | [diff] [blame] | 33 | "type": "page", |
| 34 | "link": "pos" |
| 35 | }, |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 36 | "Projects": { |
| 37 | "color": "#8e44ad", |
| 38 | "icon": "icon-puzzle-piece", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 39 | "icon": "octicon octicon-rocket", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 40 | "type": "module" |
| 41 | }, |
| 42 | "Selling": { |
| 43 | "color": "#1abc9c", |
| 44 | "icon": "icon-tag", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 45 | "icon": "octicon octicon-tag", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 46 | "type": "module" |
| 47 | }, |
| 48 | "Stock": { |
| 49 | "color": "#f39c12", |
| 50 | "icon": "icon-truck", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 51 | "icon": "octicon octicon-package", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 52 | "type": "module" |
| 53 | }, |
| 54 | "Support": { |
| 55 | "color": "#2c3e50", |
| 56 | "icon": "icon-phone", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 57 | "icon": "octicon octicon-issue-opened", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 58 | "type": "module" |
| 59 | } |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 60 | } |