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