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 [ |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 8 | # Modules |
| 9 | { |
Prateeksha Singh | 01a045a | 2019-02-11 14:00:48 +0530 | [diff] [blame] | 10 | "module_name": "Getting Started", |
| 11 | "category": "Modules", |
| 12 | "label": _("Getting Started"), |
| 13 | "color": "#1abc9c", |
| 14 | "icon": "fa fa-check-square-o", |
| 15 | "type": "module", |
| 16 | "hidden": 1, |
| 17 | "description": "Dive into the basics for your organisation's needs." |
| 18 | }, |
| 19 | { |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 20 | "module_name": "Accounting", |
| 21 | "category": "Modules", |
| 22 | "label": _("Accounting"), |
| 23 | "color": "#3498db", |
| 24 | "icon": "octicon octicon-repo", |
| 25 | "type": "module", |
| 26 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 27 | "description": "Accounts, billing, payments, cost center and budgeting." |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 28 | }, |
| 29 | { |
| 30 | "module_name": "Selling", |
| 31 | "category": "Modules", |
| 32 | "label": _("Selling"), |
| 33 | "color": "#1abc9c", |
| 34 | "icon": "octicon octicon-tag", |
| 35 | "type": "module", |
| 36 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 37 | "description": "Sales orders, quotations, customers and items." |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 38 | }, |
| 39 | { |
| 40 | "module_name": "Buying", |
| 41 | "category": "Modules", |
| 42 | "label": _("Buying"), |
| 43 | "color": "#c0392b", |
| 44 | "icon": "octicon octicon-briefcase", |
| 45 | "type": "module", |
| 46 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 47 | "description": "Purchasing, suppliers, material requests, and items." |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 48 | }, |
| 49 | { |
| 50 | "module_name": "Stock", |
| 51 | "category": "Modules", |
| 52 | "label": _("Stock"), |
| 53 | "color": "#f39c12", |
| 54 | "icon": "octicon octicon-package", |
| 55 | "type": "module", |
| 56 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 57 | "description": "Stock transactions, reports, serial numbers and batches." |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 58 | }, |
| 59 | { |
| 60 | "module_name": "Assets", |
| 61 | "category": "Modules", |
| 62 | "label": _("Assets"), |
| 63 | "color": "#4286f4", |
| 64 | "icon": "octicon octicon-database", |
| 65 | "hidden": 1, |
| 66 | "type": "module", |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 67 | "description": "Asset movement, maintainance and tools." |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 68 | }, |
| 69 | { |
| 70 | "module_name": "Projects", |
| 71 | "category": "Modules", |
| 72 | "label": _("Projects"), |
| 73 | "color": "#8e44ad", |
| 74 | "icon": "octicon octicon-rocket", |
| 75 | "type": "module", |
| 76 | "hidden": 1, |
| 77 | "description": "Updates, Timesheets and Activities." |
| 78 | }, |
| 79 | { |
| 80 | "module_name": "CRM", |
| 81 | "category": "Modules", |
| 82 | "label": _("CRM"), |
| 83 | "color": "#EF4DB6", |
| 84 | "icon": "octicon octicon-broadcast", |
| 85 | "type": "module", |
| 86 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 87 | "description": "Sales pipeline, leads, opportunities and customers." |
Prateeksha Singh | 01a045a | 2019-02-11 14:00:48 +0530 | [diff] [blame] | 88 | }, |
| 89 | { |
| 90 | "module_name": "Help Desk", |
| 91 | "category": "Modules", |
| 92 | "label": _("Help Desk"), |
| 93 | "color": "#1abc9c", |
| 94 | "icon": "fa fa-check-square-o", |
| 95 | "type": "module", |
| 96 | "hidden": 1, |
| 97 | "description": "User interactions, support issues and knowledge base." |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 98 | }, |
| 99 | { |
| 100 | "module_name": "HR", |
| 101 | "category": "Modules", |
| 102 | "label": _("Human Resources"), |
| 103 | "color": "#2ecc71", |
| 104 | "icon": "octicon octicon-organization", |
| 105 | "type": "module", |
| 106 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 107 | "description": "Employees, attendance, payroll, leaves and shifts." |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 108 | }, |
| 109 | { |
| 110 | "module_name": "Quality Management", |
| 111 | "category": "Modules", |
| 112 | "label": _("Quality"), |
| 113 | "color": "#1abc9c", |
| 114 | "icon": "fa fa-check-square-o", |
| 115 | "type": "module", |
| 116 | "hidden": 1, |
Prateeksha Singh | 01a045a | 2019-02-11 14:00:48 +0530 | [diff] [blame] | 117 | "description": "Quality goals, procedures, reviews and action." |
Prateeksha Singh | 3423407 | 2019-02-07 09:18:24 +0530 | [diff] [blame] | 118 | }, |
| 119 | |
| 120 | |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 121 | # Category: "Domains" |
| 122 | { |
| 123 | "module_name": "Manufacturing", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 124 | "category": "Domains", |
| 125 | "label": _("Manufacturing"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 126 | "color": "#7f8c8d", |
| 127 | "icon": "octicon octicon-tools", |
| 128 | "type": "module", |
| 129 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 130 | "description": "BOMS, work orders, operations, and timesheets." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 131 | }, |
| 132 | { |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 133 | "module_name": "Retail", |
| 134 | "category": "Domains", |
| 135 | "label": _("Retail"), |
| 136 | "color": "#7f8c8d", |
| 137 | "icon": "octicon octicon-credit-card", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 138 | "type": "module", |
| 139 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 140 | "description": "Point of Sale and cashier closing." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 141 | }, |
| 142 | { |
| 143 | "module_name": "Education", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 144 | "category": "Domains", |
| 145 | "label": _("Education"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 146 | "color": "#428B46", |
| 147 | "icon": "octicon octicon-mortar-board", |
| 148 | "type": "module", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 149 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 150 | "description": "Student admissions, fees, courses and scores." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 151 | }, |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 152 | |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 153 | { |
| 154 | "module_name": "Healthcare", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 155 | "category": "Domains", |
| 156 | "label": _("Healthcare"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 157 | "color": "#FF888B", |
| 158 | "icon": "fa fa-heartbeat", |
| 159 | "type": "module", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 160 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 161 | "description": "Patient appointments, procedures and tests." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 162 | }, |
| 163 | { |
| 164 | "module_name": "Agriculture", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 165 | "category": "Domains", |
| 166 | "label": _("Agriculture"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 167 | "color": "#8BC34A", |
| 168 | "icon": "octicon octicon-globe", |
| 169 | "type": "module", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 170 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 171 | "description": "Crop cycles, land areas, soil and plant analysis." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 172 | }, |
| 173 | { |
| 174 | "module_name": "Hotels", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 175 | "category": "Domains", |
| 176 | "label": _("Hotels"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 177 | "color": "#EA81E8", |
| 178 | "icon": "fa fa-bed", |
| 179 | "type": "module", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 180 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 181 | "description": "Hotel rooms, pricing, reservation and amenities." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 182 | }, |
| 183 | |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 184 | { |
Vishal | ca61453 | 2017-09-11 15:13:16 +0530 | [diff] [blame] | 185 | "module_name": "Non Profit", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 186 | "category": "Domains", |
| 187 | "label": _("Non Profit"), |
Vishal | ca61453 | 2017-09-11 15:13:16 +0530 | [diff] [blame] | 188 | "color": "#DE2B37", |
| 189 | "icon": "octicon octicon-heart", |
| 190 | "type": "module", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 191 | "hidden": 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 192 | "description": "Volunteers, memberships, grants and chapters." |
Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 193 | }, |
| 194 | { |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 195 | "module_name": "Restaurant", |
| 196 | "category": "Domains", |
| 197 | "label": _("Restaurant"), |
| 198 | "color": "#EA81E8", |
| 199 | "icon": "fa fa-cutlery", |
| 200 | "_doctype": "Restaurant", |
Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 201 | "type": "module", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 202 | "link": "List/Restaurant", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 203 | "hidden": 1, |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 204 | "description": "Menu, Orders and Table Reservations." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 205 | }, |
| 206 | |
| 207 | |
| 208 | { |
| 209 | "module_name": "Learn", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 210 | "category": "Administration", |
| 211 | "label": _("Learn"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 212 | "color": "#FF888B", |
| 213 | "icon": "octicon octicon-device-camera-video", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 214 | "is_help": True, |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 215 | "description": "Explore Help Articles and Videos." |
| 216 | }, |
| 217 | { |
| 218 | "module_name": 'Marketplace', |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 219 | "category": "Places", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 220 | "label": _('Marketplace'), |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 221 | "icon": "octicon octicon-star", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 222 | "type": 'link', |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 223 | "link": '#marketplace/home', |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 224 | "color": '#FF4136', |
| 225 | 'standard': 1, |
Prateeksha Singh | 08a6de6 | 2019-02-12 07:41:52 +0530 | [diff] [blame] | 226 | "description": "Publish items to other ERPNext users." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 227 | }, |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 228 | ] |