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 | { |
| 10 | "module_name": "Accounting", |
| 11 | "category": "Modules", |
| 12 | "label": _("Accounting"), |
| 13 | "color": "#3498db", |
| 14 | "icon": "octicon octicon-repo", |
| 15 | "type": "module", |
| 16 | "hidden": 1, |
| 17 | "description": "Accounts, Billing, Payments, Cost Center and Budgeting." |
| 18 | }, |
| 19 | { |
| 20 | "module_name": "Selling", |
| 21 | "category": "Modules", |
| 22 | "label": _("Selling"), |
| 23 | "color": "#1abc9c", |
| 24 | "icon": "octicon octicon-tag", |
| 25 | "type": "module", |
| 26 | "hidden": 1, |
| 27 | "description": "All things Sales, Customer and Products." |
| 28 | }, |
| 29 | { |
| 30 | "module_name": "Buying", |
| 31 | "category": "Modules", |
| 32 | "label": _("Buying"), |
| 33 | "color": "#c0392b", |
| 34 | "icon": "octicon octicon-briefcase", |
| 35 | "type": "module", |
| 36 | "hidden": 1, |
| 37 | "description": "Purchasing, Suppliers and Products." |
| 38 | }, |
| 39 | { |
| 40 | "module_name": "Stock", |
| 41 | "category": "Modules", |
| 42 | "label": _("Stock"), |
| 43 | "color": "#f39c12", |
| 44 | "icon": "octicon octicon-package", |
| 45 | "type": "module", |
| 46 | "hidden": 1, |
| 47 | "description": "Track Stock Transactions, Reports, and Serialized Items and Batches." |
| 48 | }, |
| 49 | { |
| 50 | "module_name": "Assets", |
| 51 | "category": "Modules", |
| 52 | "label": _("Assets"), |
| 53 | "color": "#4286f4", |
| 54 | "icon": "octicon octicon-database", |
| 55 | "hidden": 1, |
| 56 | "type": "module", |
| 57 | "description": "Asset Maintainance and Tools." |
| 58 | }, |
| 59 | { |
| 60 | "module_name": "Projects", |
| 61 | "category": "Modules", |
| 62 | "label": _("Projects"), |
| 63 | "color": "#8e44ad", |
| 64 | "icon": "octicon octicon-rocket", |
| 65 | "type": "module", |
| 66 | "hidden": 1, |
| 67 | "description": "Updates, Timesheets and Activities." |
| 68 | }, |
| 69 | { |
| 70 | "module_name": "CRM", |
| 71 | "category": "Modules", |
| 72 | "label": _("CRM"), |
| 73 | "color": "#EF4DB6", |
| 74 | "icon": "octicon octicon-broadcast", |
| 75 | "type": "module", |
| 76 | "hidden": 1, |
| 77 | "description": "Everything in your sales pipeline, from Leads to Customers, to Support." |
| 78 | }, |
| 79 | { |
| 80 | "module_name": "HR", |
| 81 | "category": "Modules", |
| 82 | "label": _("Human Resources"), |
| 83 | "color": "#2ecc71", |
| 84 | "icon": "octicon octicon-organization", |
| 85 | "type": "module", |
| 86 | "hidden": 1, |
| 87 | "description": "Employee Lifecycle, Payroll, Shifts and Leaves." |
| 88 | }, |
| 89 | { |
| 90 | "module_name": "Quality Management", |
| 91 | "category": "Modules", |
| 92 | "label": _("Quality"), |
| 93 | "color": "#1abc9c", |
| 94 | "icon": "fa fa-check-square-o", |
| 95 | "type": "module", |
| 96 | "hidden": 1, |
| 97 | "description": "Volunteers, Memberships, Grants and Chapters." |
| 98 | }, |
| 99 | |
| 100 | |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 101 | # Category: "Domains" |
| 102 | { |
| 103 | "module_name": "Manufacturing", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 104 | "category": "Domains", |
| 105 | "label": _("Manufacturing"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 106 | "color": "#7f8c8d", |
| 107 | "icon": "octicon octicon-tools", |
| 108 | "type": "module", |
| 109 | "hidden": 1, |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 110 | "description": "Streamline your production with BOMS, Work Orders and Timesheets." |
| 111 | }, |
| 112 | { |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 113 | "module_name": "Retail", |
| 114 | "category": "Domains", |
| 115 | "label": _("Retail"), |
| 116 | "color": "#7f8c8d", |
| 117 | "icon": "octicon octicon-credit-card", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 118 | "type": "module", |
| 119 | "hidden": 1, |
Prateeksha Singh | b5eb16f | 2019-01-31 14:50:22 +0530 | [diff] [blame] | 120 | "description": "Point of Sale, Cashier Closing and Loyalty Programs." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 121 | }, |
| 122 | { |
| 123 | "module_name": "Education", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 124 | "category": "Domains", |
| 125 | "label": _("Education"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 126 | "color": "#428B46", |
| 127 | "icon": "octicon octicon-mortar-board", |
| 128 | "type": "module", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 129 | "hidden": 1, |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 130 | "description": "Manage Student Admissions, Fees, Subjects and Score Reports." |
| 131 | }, |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 132 | |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 133 | { |
| 134 | "module_name": "Healthcare", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 135 | "category": "Domains", |
| 136 | "label": _("Healthcare"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 137 | "color": "#FF888B", |
| 138 | "icon": "fa fa-heartbeat", |
| 139 | "type": "module", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 140 | "hidden": 1, |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 141 | "description": "Patients appointments, procedures and tests, with diagnosis reports and drug prescriptions." |
| 142 | }, |
| 143 | { |
| 144 | "module_name": "Agriculture", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 145 | "category": "Domains", |
| 146 | "label": _("Agriculture"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 147 | "color": "#8BC34A", |
| 148 | "icon": "octicon octicon-globe", |
| 149 | "type": "module", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 150 | "hidden": 1, |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 151 | "description": "Crop Cycles, Land Areas and Soil and Plant Analysis." |
| 152 | }, |
| 153 | { |
| 154 | "module_name": "Hotels", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 155 | "category": "Domains", |
| 156 | "label": _("Hotels"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 157 | "color": "#EA81E8", |
| 158 | "icon": "fa fa-bed", |
| 159 | "type": "module", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 160 | "hidden": 1, |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 161 | "description": "Manage Hotel Rooms, Pricing, Reservation and Amenities." |
| 162 | }, |
| 163 | |
Vishal | a68234d | 2017-11-22 23:11:12 +0530 | [diff] [blame] | 164 | { |
Vishal | ca61453 | 2017-09-11 15:13:16 +0530 | [diff] [blame] | 165 | "module_name": "Non Profit", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 166 | "category": "Domains", |
| 167 | "label": _("Non Profit"), |
Vishal | ca61453 | 2017-09-11 15:13:16 +0530 | [diff] [blame] | 168 | "color": "#DE2B37", |
| 169 | "icon": "octicon octicon-heart", |
| 170 | "type": "module", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 171 | "hidden": 1, |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 172 | "description": "Make benefiting others easier with Volunteers, Memberships, Grants and Chapters." |
Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 173 | }, |
| 174 | { |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 175 | "module_name": "Restaurant", |
| 176 | "category": "Domains", |
| 177 | "label": _("Restaurant"), |
| 178 | "color": "#EA81E8", |
| 179 | "icon": "fa fa-cutlery", |
| 180 | "_doctype": "Restaurant", |
Himanshu | 0209ef0 | 2018-12-25 17:42:31 +0530 | [diff] [blame] | 181 | "type": "module", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 182 | "link": "List/Restaurant", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 183 | "hidden": 1, |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 184 | "description": "Menu, Orders and Table Reservations." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 185 | }, |
| 186 | |
| 187 | |
| 188 | { |
| 189 | "module_name": "Learn", |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 190 | "category": "Administration", |
| 191 | "label": _("Learn"), |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 192 | "color": "#FF888B", |
| 193 | "icon": "octicon octicon-device-camera-video", |
| 194 | "type": "module", |
| 195 | "is_help": True, |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 196 | "description": "Explore Help Articles and Videos." |
| 197 | }, |
| 198 | { |
| 199 | "module_name": 'Marketplace', |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 200 | "category": "Places", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 201 | "label": _('Marketplace'), |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 202 | "icon": "octicon octicon-star", |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 203 | "type": 'link', |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 204 | "link": '#marketplace/home', |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 205 | "color": '#FF4136', |
| 206 | 'standard': 1, |
Prateeksha Singh | 2c14704 | 2019-01-29 10:12:17 +0530 | [diff] [blame] | 207 | "description": "Publish items to other ERPNext users and start a conversation." |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 208 | }, |
Prateeksha Singh | 7cd6ebe | 2019-01-24 07:15:53 +0530 | [diff] [blame] | 209 | ] |