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", |
| 35 | "link": "pos" |
| 36 | }, |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 37 | "Projects": { |
| 38 | "color": "#8e44ad", |
| 39 | "icon": "icon-puzzle-piece", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 40 | "icon": "octicon octicon-rocket", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 41 | "type": "module" |
| 42 | }, |
| 43 | "Selling": { |
| 44 | "color": "#1abc9c", |
| 45 | "icon": "icon-tag", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 46 | "icon": "octicon octicon-tag", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 47 | "type": "module" |
| 48 | }, |
Rushabh Mehta | 60cfccb | 2015-02-17 10:36:54 +0530 | [diff] [blame] | 49 | "CRM": { |
| 50 | "color": "#EF4DB6", |
| 51 | "icon": "octicon octicon-broadcast", |
| 52 | "type": "module" |
| 53 | }, |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 54 | "Stock": { |
| 55 | "color": "#f39c12", |
| 56 | "icon": "icon-truck", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 57 | "icon": "octicon octicon-package", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 58 | "type": "module" |
| 59 | }, |
| 60 | "Support": { |
| 61 | "color": "#2c3e50", |
| 62 | "icon": "icon-phone", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 63 | "icon": "octicon octicon-issue-opened", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 64 | "type": "module" |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 65 | }, |
| 66 | "Learn": { |
Rushabh Mehta | 7d23e42 | 2015-11-02 10:45:18 +0530 | [diff] [blame] | 67 | "color": "#FF888B", |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 68 | "force_show": True, |
Rushabh Mehta | 7d23e42 | 2015-11-02 10:45:18 +0530 | [diff] [blame] | 69 | "icon": "octicon octicon-device-camera-video", |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 70 | "type": "module", |
| 71 | "is_help": True |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 72 | } |
Rushabh Mehta | b63d550 | 2013-12-23 16:09:00 +0530 | [diff] [blame] | 73 | } |