Rushabh Mehta | bc4e2cd | 2017-10-17 12:30:34 +0530 | [diff] [blame] | 1 | # coding=utf-8 |
| 2 | |
Anand Doshi | d57e793 | 2015-02-24 12:24:53 +0530 | [diff] [blame] | 3 | from __future__ import unicode_literals |
Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 4 | from frappe import _ |
Rushabh Mehta | 22ababb | 2014-02-07 18:12:43 +0530 | [diff] [blame] | 5 | |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 6 | def get_data(): |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 7 | return [ |
| 8 | { |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 9 | "module_name": "Item", |
| 10 | "_doctype": "Item", |
| 11 | "color": "#f39c12", |
| 12 | "icon": "octicon octicon-package", |
| 13 | "type": "link", |
| 14 | "link": "List/Item" |
| 15 | }, |
| 16 | { |
| 17 | "module_name": "Customer", |
| 18 | "_doctype": "Customer", |
| 19 | "color": "#1abc9c", |
| 20 | "icon": "octicon octicon-tag", |
| 21 | "type": "link", |
| 22 | "link": "List/Customer" |
| 23 | }, |
| 24 | { |
| 25 | "module_name": "Supplier", |
| 26 | "_doctype": "Supplier", |
| 27 | "color": "#c0392b", |
| 28 | "icon": "octicon octicon-briefcase", |
| 29 | "type": "link", |
| 30 | "link": "List/Supplier" |
| 31 | }, |
| 32 | { |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 33 | "_doctype": "Employee", |
| 34 | "module_name": "Employee", |
| 35 | "color": "#2ecc71", |
| 36 | "icon": "octicon octicon-organization", |
| 37 | "type": "link", |
| 38 | "link": "List/Employee" |
| 39 | }, |
| 40 | { |
Suraj Shetty | b0a84f0 | 2018-12-20 20:12:37 +0530 | [diff] [blame] | 41 | "module_name": "Projects", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 42 | "color": "#8e44ad", |
| 43 | "icon": "octicon octicon-rocket", |
Suraj Shetty | b0a84f0 | 2018-12-20 20:12:37 +0530 | [diff] [blame] | 44 | "type": "module", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 45 | }, |
| 46 | { |
| 47 | "module_name": "Issue", |
| 48 | "color": "#2c3e50", |
| 49 | "icon": "octicon octicon-issue-opened", |
| 50 | "_doctype": "Issue", |
| 51 | "type": "link", |
| 52 | "link": "List/Issue" |
| 53 | }, |
| 54 | { |
| 55 | "module_name": "Lead", |
| 56 | "icon": "octicon octicon-broadcast", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 57 | "_doctype": "Lead", |
| 58 | "type": "link", |
| 59 | "link": "List/Lead" |
| 60 | }, |
Rushabh Mehta | 0277244 | 2016-04-20 18:45:46 +0530 | [diff] [blame] | 61 | { |
Rushabh Mehta | 769dda0 | 2016-09-15 15:15:45 +0530 | [diff] [blame] | 62 | "module_name": "Profit and Loss Statement", |
Rushabh Mehta | 0277244 | 2016-04-20 18:45:46 +0530 | [diff] [blame] | 63 | "_doctype": "Account", |
| 64 | "color": "#3498db", |
| 65 | "icon": "octicon octicon-repo", |
| 66 | "type": "link", |
| 67 | "link": "query-report/Profit and Loss Statement" |
| 68 | }, |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 69 | |
| 70 | # old |
| 71 | { |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 72 | "module_name": "Accounts", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 73 | "color": "#3498db", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 74 | "icon": "octicon octicon-repo", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 75 | "type": "module", |
| 76 | "hidden": 1 |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 77 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 78 | { |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 79 | "module_name": "Stock", |
| 80 | "color": "#f39c12", |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 81 | "icon": "octicon octicon-package", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 82 | "type": "module", |
| 83 | "hidden": 1 |
Rushabh Mehta | d1e1c52 | 2016-03-08 18:06:21 +0530 | [diff] [blame] | 84 | }, |
| 85 | { |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 86 | "module_name": "CRM", |
| 87 | "color": "#EF4DB6", |
| 88 | "icon": "octicon octicon-broadcast", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 89 | "type": "module", |
| 90 | "hidden": 1 |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 91 | }, |
| 92 | { |
| 93 | "module_name": "Selling", |
| 94 | "color": "#1abc9c", |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 95 | "icon": "octicon octicon-tag", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 96 | "type": "module", |
| 97 | "hidden": 1 |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 98 | }, |
| 99 | { |
| 100 | "module_name": "Buying", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 101 | "color": "#c0392b", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 102 | "icon": "octicon octicon-briefcase", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 103 | "type": "module", |
| 104 | "hidden": 1 |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 105 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 106 | { |
| 107 | "module_name": "HR", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 108 | "color": "#2ecc71", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 109 | "icon": "octicon octicon-organization", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 110 | "label": _("Human Resources"), |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 111 | "type": "module", |
| 112 | "hidden": 1 |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 113 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 114 | { |
| 115 | "module_name": "Manufacturing", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 116 | "color": "#7f8c8d", |
Rushabh Mehta | ff58261 | 2015-01-02 14:40:48 +0530 | [diff] [blame] | 117 | "icon": "octicon octicon-tools", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 118 | "type": "module", |
| 119 | "hidden": 1 |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 120 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 121 | { |
| 122 | "module_name": "POS", |
Rushabh Mehta | 72e1719 | 2014-08-08 15:30:49 +0530 | [diff] [blame] | 123 | "color": "#589494", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 124 | "icon": "octicon octicon-credit-card", |
Rushabh Mehta | 72e1719 | 2014-08-08 15:30:49 +0530 | [diff] [blame] | 125 | "type": "page", |
Rushabh Mehta | eb96137 | 2016-01-04 15:48:37 +0530 | [diff] [blame] | 126 | "link": "pos", |
Rohit Waghchaure | e0934d1 | 2016-05-11 15:04:57 +0530 | [diff] [blame] | 127 | "label": _("POS") |
Rushabh Mehta | 72e1719 | 2014-08-08 15:30:49 +0530 | [diff] [blame] | 128 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 129 | { |
Prateeksha Singh | 04c4ce3 | 2017-12-20 10:51:25 +0530 | [diff] [blame] | 130 | "module_name": "Leaderboard", |
| 131 | "color": "#589494", |
| 132 | "icon": "octicon octicon-graph", |
| 133 | "type": "page", |
| 134 | "link": "leaderboard", |
| 135 | "label": _("Leaderboard") |
| 136 | }, |
| 137 | { |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 138 | "module_name": "Projects", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 139 | "color": "#8e44ad", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 140 | "icon": "octicon octicon-rocket", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 141 | "type": "module", |
| 142 | "hidden": 1 |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 143 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 144 | { |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 145 | "module_name": "Support", |
Nabin Hait | e608539 | 2014-05-16 19:56:06 +0530 | [diff] [blame] | 146 | "color": "#2c3e50", |
Rushabh Mehta | 7b822ab | 2014-12-31 14:42:23 +0530 | [diff] [blame] | 147 | "icon": "octicon octicon-issue-opened", |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 148 | "type": "module", |
| 149 | "hidden": 1 |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 150 | }, |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 151 | { |
Suraj Shetty | 89625b6 | 2018-12-21 11:04:32 +0530 | [diff] [blame] | 152 | "module_name": "Help", |
Rushabh Mehta | 7d23e42 | 2015-11-02 10:45:18 +0530 | [diff] [blame] | 153 | "color": "#FF888B", |
Rushabh Mehta | 7d23e42 | 2015-11-02 10:45:18 +0530 | [diff] [blame] | 154 | "icon": "octicon octicon-device-camera-video", |
Rushabh Mehta | 6771240 | 2015-05-25 18:30:53 +0530 | [diff] [blame] | 155 | "type": "module", |
Rushabh Mehta | eb96137 | 2016-01-04 15:48:37 +0530 | [diff] [blame] | 156 | "is_help": True, |
Suraj Shetty | 89625b6 | 2018-12-21 11:04:32 +0530 | [diff] [blame] | 157 | "label": _("Help"), |
Rushabh Mehta | 0e2dd85 | 2016-04-13 17:21:57 +0530 | [diff] [blame] | 158 | "hidden": 1 |
Kanchan Chauhan | fb3eb13 | 2016-06-29 15:04:08 +0530 | [diff] [blame] | 159 | }, |
| 160 | { |
| 161 | "module_name": "Maintenance", |
| 162 | "color": "#FF888B", |
| 163 | "icon": "octicon octicon-tools", |
| 164 | "type": "module", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 165 | "label": _("Maintenance"), |
| 166 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 167 | }, |
| 168 | { |
| 169 | "module_name": "Student", |
| 170 | "color": "#c0392b", |
| 171 | "icon": "octicon octicon-person", |
| 172 | "label": _("Student"), |
| 173 | "link": "List/Student", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 174 | "_doctype": "Student", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 175 | "type": "list", |
| 176 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 177 | }, |
| 178 | { |
| 179 | "module_name": "Student Group", |
| 180 | "color": "#d59919", |
| 181 | "icon": "octicon octicon-organization", |
| 182 | "label": _("Student Group"), |
| 183 | "link": "List/Student Group", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 184 | "_doctype": "Student Group", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 185 | "type": "list", |
| 186 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 187 | }, |
| 188 | { |
| 189 | "module_name": "Course Schedule", |
| 190 | "color": "#fd784f", |
| 191 | "icon": "octicon octicon-calendar", |
| 192 | "label": _("Course Schedule"), |
Manas Solanki | 1fa9925 | 2018-03-07 12:08:52 +0530 | [diff] [blame] | 193 | "link": "List/Course Schedule/Calendar", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 194 | "_doctype": "Course Schedule", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 195 | "type": "list", |
| 196 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 197 | }, |
| 198 | { |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 199 | "module_name": "Student Attendance Tool", |
| 200 | "color": "#C0392B", |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 201 | "icon": "octicon octicon-checklist", |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 202 | "label": _("Student Attendance Tool"), |
| 203 | "link": "List/Student Attendance Tool", |
| 204 | "_doctype": "Student Attendance Tool", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 205 | "type": "list", |
| 206 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 207 | }, |
| 208 | { |
| 209 | "module_name": "Course", |
| 210 | "color": "#8e44ad", |
| 211 | "icon": "octicon octicon-book", |
| 212 | "label": _("Course"), |
| 213 | "link": "List/Course", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 214 | "_doctype": "Course", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 215 | "type": "list", |
| 216 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 217 | }, |
| 218 | { |
| 219 | "module_name": "Program", |
| 220 | "color": "#9b59b6", |
| 221 | "icon": "octicon octicon-repo", |
| 222 | "label": _("Program"), |
| 223 | "link": "List/Program", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 224 | "_doctype": "Program", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 225 | "type": "list", |
| 226 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 227 | }, |
| 228 | { |
| 229 | "module_name": "Student Applicant", |
| 230 | "color": "#4d927f", |
| 231 | "icon": "octicon octicon-clippy", |
| 232 | "label": _("Student Applicant"), |
| 233 | "link": "List/Student Applicant", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 234 | "_doctype": "Student Applicant", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 235 | "type": "list", |
| 236 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 237 | }, |
| 238 | { |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 239 | "module_name": "Fees", |
| 240 | "color": "#83C21E", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 241 | "icon": "fa fa-money", |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 242 | "label": _("Fees"), |
| 243 | "link": "List/Fees", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 244 | "_doctype": "Fees", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 245 | "type": "list", |
| 246 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 247 | }, |
| 248 | { |
| 249 | "module_name": "Instructor", |
| 250 | "color": "#a99e4c", |
| 251 | "icon": "octicon octicon-broadcast", |
| 252 | "label": _("Instructor"), |
| 253 | "link": "List/Instructor", |
Rushabh Mehta | 11900e8 | 2016-07-22 10:58:56 +0530 | [diff] [blame] | 254 | "_doctype": "Instructor", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 255 | "type": "list", |
| 256 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 257 | }, |
| 258 | { |
| 259 | "module_name": "Room", |
| 260 | "color": "#f22683", |
Rushabh Mehta | 2167ff5 | 2016-12-07 11:08:48 +0530 | [diff] [blame] | 261 | "icon": "fa fa-map-marker", |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 262 | "label": _("Room"), |
| 263 | "link": "List/Room", |
Neil Trini Lasrado | 50b2278 | 2016-08-01 23:45:33 +0530 | [diff] [blame] | 264 | "_doctype": "Room", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 265 | "type": "list", |
| 266 | "hidden": 1 |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 267 | }, |
| 268 | { |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 269 | "module_name": "Education", |
| 270 | "color": "#428B46", |
Rushabh Mehta | 20038ad | 2016-07-21 16:01:59 +0530 | [diff] [blame] | 271 | "icon": "octicon octicon-mortar-board", |
| 272 | "type": "module", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 273 | "label": _("Education"), |
| 274 | "hidden": 1 |
Rushabh Mehta | f056974 | 2017-09-13 12:52:30 +0530 | [diff] [blame] | 275 | }, |
system19 | 4e195d9 | 2018-01-30 19:18:24 +1100 | [diff] [blame] | 276 | { |
Rushabh Mehta | f056974 | 2017-09-13 12:52:30 +0530 | [diff] [blame] | 277 | "module_name": "Healthcare", |
| 278 | "color": "#FF888B", |
Raghavendra Kamath | 2967ec3 | 2018-01-17 16:11:09 +0530 | [diff] [blame] | 279 | "icon": "fa fa-heartbeat", |
Rushabh Mehta | f056974 | 2017-09-13 12:52:30 +0530 | [diff] [blame] | 280 | "type": "module", |
Faris Ansari | fd345f8 | 2017-10-05 11:17:30 +0530 | [diff] [blame] | 281 | "label": _("Healthcare"), |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 282 | "hidden": 1 |
Faris Ansari | fd345f8 | 2017-10-05 11:17:30 +0530 | [diff] [blame] | 283 | }, |
Raghavendra Kamath | 2967ec3 | 2018-01-17 16:11:09 +0530 | [diff] [blame] | 284 | { |
Raghavendra Kamath | 2967ec3 | 2018-01-17 16:11:09 +0530 | [diff] [blame] | 285 | "module_name": "Patient", |
| 286 | "color": "#6BE273", |
| 287 | "icon": "fa fa-user", |
| 288 | "doctype": "Patient", |
| 289 | "type": "link", |
system19 | 4e195d9 | 2018-01-30 19:18:24 +1100 | [diff] [blame] | 290 | "link": "List/Patient", |
| 291 | "label": _("Patient"), |
| 292 | "hidden": 1 |
Raghavendra Kamath | 2967ec3 | 2018-01-17 16:11:09 +0530 | [diff] [blame] | 293 | }, |
| 294 | { |
Jamsheer | 14c6ab0 | 2018-10-10 14:44:36 +0530 | [diff] [blame] | 295 | "module_name": "Healthcare Practitioner", |
| 296 | "color": "#2ecc71", |
| 297 | "icon": "fa fa-user-md", |
| 298 | "doctype": "Healthcare Practitioner", |
| 299 | "type": "link", |
| 300 | "link": "List/Healthcare Practitioner", |
| 301 | "label": _("Healthcare Practitioner"), |
| 302 | "hidden": 1 |
| 303 | }, |
| 304 | { |
Raghavendra Kamath | 2967ec3 | 2018-01-17 16:11:09 +0530 | [diff] [blame] | 305 | "module_name": "Patient Appointment", |
| 306 | "color": "#934F92", |
| 307 | "icon": "fa fa-calendar-plus-o", |
| 308 | "doctype": "Patient Appointment", |
| 309 | "type": "link", |
system19 | 4e195d9 | 2018-01-30 19:18:24 +1100 | [diff] [blame] | 310 | "link": "List/Patient Appointment", |
| 311 | "label": _("Patient Appointment"), |
| 312 | "hidden": 1 |
| 313 | }, |
| 314 | { |
Jamsheer | f926911 | 2018-07-16 18:08:53 +0530 | [diff] [blame] | 315 | "module_name": "Patient Encounter", |
system19 | 4e195d9 | 2018-01-30 19:18:24 +1100 | [diff] [blame] | 316 | "color": "#2ecc71", |
| 317 | "icon": "fa fa-stethoscope", |
Jamsheer | f926911 | 2018-07-16 18:08:53 +0530 | [diff] [blame] | 318 | "doctype": "Patient Encounter", |
system19 | 4e195d9 | 2018-01-30 19:18:24 +1100 | [diff] [blame] | 319 | "type": "link", |
Jamsheer | f926911 | 2018-07-16 18:08:53 +0530 | [diff] [blame] | 320 | "link": "List/Patient Encounter", |
| 321 | "label": _("Patient Encounter"), |
system19 | 4e195d9 | 2018-01-30 19:18:24 +1100 | [diff] [blame] | 322 | "hidden": 1 |
| 323 | }, |
| 324 | { |
| 325 | "module_name": "Lab Test", |
| 326 | "color": "#7578f6", |
| 327 | "icon": "octicon octicon-beaker", |
| 328 | "doctype": "Lab Test", |
| 329 | "type": "list", |
| 330 | "link": "List/Lab Test", |
| 331 | "label": _("Lab Test"), |
| 332 | "hidden": 1 |
Raghavendra Kamath | 2967ec3 | 2018-01-17 16:11:09 +0530 | [diff] [blame] | 333 | }, |
Jamsheer | 14c6ab0 | 2018-10-10 14:44:36 +0530 | [diff] [blame] | 334 | { |
| 335 | "module_name": "Vital Signs", |
| 336 | "color": "#2ecc71", |
| 337 | "icon": "fa fa-thermometer-empty", |
| 338 | "doctype": "Vital Signs", |
| 339 | "type": "list", |
| 340 | "link": "List/Vital Signs", |
| 341 | "label": _("Vital Signs"), |
| 342 | "hidden": 1 |
| 343 | }, |
| 344 | { |
| 345 | "module_name": "Clinical Procedure", |
| 346 | "color": "#FF888B", |
| 347 | "icon": "fa fa-medkit", |
| 348 | "doctype": "Clinical Procedure", |
| 349 | "type": "list", |
| 350 | "link": "List/Clinical Procedure", |
| 351 | "label": _("Clinical Procedure"), |
| 352 | "hidden": 1 |
| 353 | }, |
| 354 | { |
| 355 | "module_name": "Inpatient Record", |
| 356 | "color": "#7578f6", |
| 357 | "icon": "fa fa-list-alt", |
| 358 | "doctype": "Inpatient Record", |
| 359 | "type": "list", |
| 360 | "link": "List/Inpatient Record", |
| 361 | "label": _("Inpatient Record"), |
| 362 | "hidden": 1 |
| 363 | }, |
Faris Ansari | fd345f8 | 2017-10-05 11:17:30 +0530 | [diff] [blame] | 364 | { |
Prateeksha Singh | 5d227c9 | 2018-06-28 09:59:46 +0530 | [diff] [blame] | 365 | "module_name": "Hub", |
| 366 | "color": "#009248", |
| 367 | "icon": "/assets/erpnext/images/hub_logo.svg", |
| 368 | "type": "page", |
| 369 | "link": "Hub/Item", |
| 370 | "label": _("Hub") |
| 371 | }, |
| 372 | { |
Manas Solanki | 2bca5a9 | 2017-12-18 13:55:30 +0530 | [diff] [blame] | 373 | "module_name": "Data Import", |
| 374 | "color": "#FFF168", |
| 375 | "reverse": 1, |
| 376 | "doctype": "Data Import", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 377 | "icon": "octicon octicon-cloud-upload", |
Manas Solanki | 2bca5a9 | 2017-12-18 13:55:30 +0530 | [diff] [blame] | 378 | "label": _("Data Import"), |
| 379 | "link": "List/Data Import", |
| 380 | "type": "list" |
Faris Ansari | 367b90e | 2017-09-29 15:17:48 +0530 | [diff] [blame] | 381 | }, |
Rushabh Mehta | bc4e2cd | 2017-10-17 12:30:34 +0530 | [diff] [blame] | 382 | { |
| 383 | "module_name": "Restaurant", |
| 384 | "color": "#EA81E8", |
| 385 | "icon": "🍔", |
| 386 | "_doctype": "Restaurant", |
Shreya Shah | 77de8dc | 2018-06-19 10:43:08 +0530 | [diff] [blame] | 387 | "type": "module", |
Rushabh Mehta | bc4e2cd | 2017-10-17 12:30:34 +0530 | [diff] [blame] | 388 | "link": "List/Restaurant", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 389 | "label": _("Restaurant"), |
| 390 | "hidden": 1 |
| 391 | }, |
| 392 | { |
Revant Nandgaonkar | 2dee8fc | 2018-02-12 11:57:12 +0530 | [diff] [blame] | 393 | "module_name": "Hotels", |
| 394 | "color": "#EA81E8", |
| 395 | "icon": "fa fa-bed", |
| 396 | "type": "module", |
| 397 | "label": _("Hotels"), |
| 398 | "hidden": 1 |
| 399 | }, |
| 400 | { |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 401 | "module_name": "Agriculture", |
| 402 | "color": "#8BC34A", |
| 403 | "icon": "octicon octicon-globe", |
| 404 | "type": "module", |
| 405 | "label": _("Agriculture"), |
| 406 | "hidden": 1 |
| 407 | }, |
| 408 | { |
| 409 | "module_name": "Crop", |
| 410 | "_doctype": "Crop", |
| 411 | "label": _("Crop"), |
| 412 | "color": "#8BC34A", |
| 413 | "icon": "fa fa-tree", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 414 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 415 | "link": "List/Crop", |
| 416 | "hidden": 1 |
| 417 | }, |
| 418 | { |
| 419 | "module_name": "Crop Cycle", |
| 420 | "_doctype": "Crop Cycle", |
| 421 | "label": _("Crop Cycle"), |
| 422 | "color": "#8BC34A", |
| 423 | "icon": "fa fa-circle-o-notch", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 424 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 425 | "link": "List/Crop Cycle", |
| 426 | "hidden": 1 |
| 427 | }, |
| 428 | { |
| 429 | "module_name": "Fertilizer", |
| 430 | "_doctype": "Fertilizer", |
| 431 | "label": _("Fertilizer"), |
| 432 | "color": "#8BC34A", |
| 433 | "icon": "fa fa-leaf", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 434 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 435 | "link": "List/Fertilizer", |
| 436 | "hidden": 1 |
| 437 | }, |
| 438 | { |
Alchez | df1eae8 | 2018-07-13 12:50:04 +0530 | [diff] [blame] | 439 | "module_name": "Location", |
| 440 | "_doctype": "Location", |
| 441 | "label": _("Location"), |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 442 | "color": "#8BC34A", |
| 443 | "icon": "fa fa-map", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 444 | "type": "list", |
Alchez | df1eae8 | 2018-07-13 12:50:04 +0530 | [diff] [blame] | 445 | "link": "List/Location", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 446 | "hidden": 1 |
| 447 | }, |
| 448 | { |
| 449 | "module_name": "Disease", |
| 450 | "_doctype": "Disease", |
| 451 | "label": _("Disease"), |
| 452 | "color": "#8BC34A", |
| 453 | "icon": "octicon octicon-bug", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 454 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 455 | "link": "List/Disease", |
| 456 | "hidden": 1 |
| 457 | }, |
| 458 | { |
| 459 | "module_name": "Plant Analysis", |
| 460 | "_doctype": "Plant Analysis", |
| 461 | "label": _("Plant Analysis"), |
| 462 | "color": "#8BC34A", |
| 463 | "icon": "fa fa-pagelines", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 464 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 465 | "link": "List/Plant Analysis", |
| 466 | "hidden": 1 |
| 467 | }, |
| 468 | { |
| 469 | "module_name": "Soil Analysis", |
| 470 | "_doctype": "Soil Analysis", |
| 471 | "label": _("Soil Analysis"), |
| 472 | "color": "#8BC34A", |
| 473 | "icon": "fa fa-flask", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 474 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 475 | "link": "List/Soil Analysis", |
| 476 | "hidden": 1 |
| 477 | }, |
| 478 | { |
| 479 | "module_name": "Soil Texture", |
| 480 | "_doctype": "Soil Texture", |
| 481 | "label": _("Soil Texture"), |
| 482 | "color": "#8BC34A", |
| 483 | "icon": "octicon octicon-beaker", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 484 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 485 | "link": "List/Soil Texture", |
| 486 | "hidden": 1 |
| 487 | }, |
| 488 | { |
| 489 | "module_name": "Water Analysis", |
| 490 | "_doctype": "Water Analysis", |
| 491 | "label": _("Water Analysis"), |
| 492 | "color": "#8BC34A", |
| 493 | "icon": "fa fa-tint", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 494 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 495 | "link": "List/Water Analysis", |
| 496 | "hidden": 1 |
| 497 | }, |
| 498 | { |
| 499 | "module_name": "Weather", |
| 500 | "_doctype": "Weather", |
| 501 | "label": _("Weather"), |
| 502 | "color": "#8BC34A", |
| 503 | "icon": "fa fa-sun-o", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 504 | "type": "list", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 505 | "link": "List/Weather", |
| 506 | "hidden": 1 |
Kanchan Chauhan | e58a41a | 2017-10-17 15:17:24 +0530 | [diff] [blame] | 507 | }, |
| 508 | { |
| 509 | "module_name": "Assets", |
| 510 | "color": "#4286f4", |
| 511 | "icon": "octicon octicon-database", |
Ameya Shenoy | 5c62368 | 2017-12-06 18:36:27 +0530 | [diff] [blame] | 512 | "hidden": 1, |
| 513 | "label": _("Assets"), |
Kanchan Chauhan | e58a41a | 2017-10-17 15:17:24 +0530 | [diff] [blame] | 514 | "type": "module" |
| 515 | }, |
Vishal | ca61453 | 2017-09-11 15:13:16 +0530 | [diff] [blame] | 516 | { |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 517 | "module_name": "Grant Application", |
| 518 | "color": "#E9AB17", |
| 519 | "icon": "fa fa-gift", |
| 520 | "_doctype": "Grant Application", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 521 | "type": "list", |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 522 | "link": "List/Grant Application", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 523 | "label": _("Grant Application"), |
| 524 | "hidden": 1 |
| 525 | |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 526 | }, |
| 527 | { |
| 528 | "module_name": "Donor", |
| 529 | "color": "#7F5A58", |
| 530 | "icon": "fa fa-tint", |
| 531 | "_doctype": "Donor", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 532 | "type": "list", |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 533 | "link": "List/Donor", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 534 | "label": _("Donor"), |
| 535 | "hidden": 1 |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 536 | }, |
| 537 | { |
| 538 | "module_name": "Volunteer", |
| 539 | "color": "#7E587E", |
| 540 | "icon": "fa fa-angellist", |
| 541 | "_doctype": "Volunteer", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 542 | "type": "list", |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 543 | "link": "List/Volunteer", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 544 | "label": _("Volunteer"), |
| 545 | "hidden": 1 |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 546 | }, |
| 547 | { |
| 548 | "module_name": "Member", |
| 549 | "color": "#79BAEC", |
| 550 | "icon": "fa fa-users", |
| 551 | "_doctype": "Member", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 552 | "type": "list", |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 553 | "link": "List/Member", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 554 | "label": _("Member"), |
| 555 | "hidden": 1 |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 556 | }, |
| 557 | { |
| 558 | "module_name": "Chapter", |
| 559 | "color": "#3B9C9C", |
| 560 | "icon": "fa fa-handshake-o", |
| 561 | "_doctype": "Chapter", |
Manas Solanki | 6a415bd | 2017-12-12 13:24:13 +0530 | [diff] [blame] | 562 | "type": "list", |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 563 | "link": "List/Chapter", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 564 | "label": _("Chapter"), |
| 565 | "hidden": 1 |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 566 | }, |
| 567 | { |
Vishal | ca61453 | 2017-09-11 15:13:16 +0530 | [diff] [blame] | 568 | "module_name": "Non Profit", |
| 569 | "color": "#DE2B37", |
| 570 | "icon": "octicon octicon-heart", |
| 571 | "type": "module", |
Vishal | 7411617 | 2017-12-05 15:43:19 +0530 | [diff] [blame] | 572 | "label": _("Non Profit"), |
| 573 | "hidden": 1 |
Vishal | ca61453 | 2017-09-11 15:13:16 +0530 | [diff] [blame] | 574 | } |
Rushabh Mehta | 1bf440b | 2016-01-14 18:14:50 +0530 | [diff] [blame] | 575 | ] |