blob: 5d4dfa168754781ccca8704988c5d4a86cb65a8a [file] [log] [blame]
Rushabh Mehtabc4e2cd2017-10-17 12:30:34 +05301# coding=utf-8
2
Anand Doshid57e7932015-02-24 12:24:53 +05303from __future__ import unicode_literals
Rushabh Mehta793ba6b2014-02-14 15:47:51 +05304from frappe import _
Rushabh Mehta22ababb2014-02-07 18:12:43 +05305
Nabin Haite6085392014-05-16 19:56:06 +05306def get_data():
Rushabh Mehta1bf440b2016-01-14 18:14:50 +05307 return [
Prateeksha Singh34234072019-02-07 09:18:24 +05308 # Modules
9 {
Prateeksha Singh01a045a2019-02-11 14:00:48 +053010 "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 Singh34234072019-02-07 09:18:24 +053020 "module_name": "Accounting",
21 "category": "Modules",
22 "label": _("Accounting"),
23 "color": "#3498db",
24 "icon": "octicon octicon-repo",
25 "type": "module",
26 "hidden": 1,
Prateeksha Singh08a6de62019-02-12 07:41:52 +053027 "description": "Accounts, billing, payments, cost center and budgeting."
Prateeksha Singh34234072019-02-07 09:18:24 +053028 },
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 Singh08a6de62019-02-12 07:41:52 +053037 "description": "Sales orders, quotations, customers and items."
Prateeksha Singh34234072019-02-07 09:18:24 +053038 },
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 Singh08a6de62019-02-12 07:41:52 +053047 "description": "Purchasing, suppliers, material requests, and items."
Prateeksha Singh34234072019-02-07 09:18:24 +053048 },
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 Singh08a6de62019-02-12 07:41:52 +053057 "description": "Stock transactions, reports, serial numbers and batches."
Prateeksha Singh34234072019-02-07 09:18:24 +053058 },
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 Singh08a6de62019-02-12 07:41:52 +053067 "description": "Asset movement, maintainance and tools."
Prateeksha Singh34234072019-02-07 09:18:24 +053068 },
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 Singh08a6de62019-02-12 07:41:52 +053087 "description": "Sales pipeline, leads, opportunities and customers."
Prateeksha Singh01a045a2019-02-11 14:00:48 +053088 },
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 Singh34234072019-02-07 09:18:24 +053098 },
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 Singh08a6de62019-02-12 07:41:52 +0530107 "description": "Employees, attendance, payroll, leaves and shifts."
Prateeksha Singh34234072019-02-07 09:18:24 +0530108 },
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 Singh01a045a2019-02-11 14:00:48 +0530117 "description": "Quality goals, procedures, reviews and action."
Prateeksha Singh34234072019-02-07 09:18:24 +0530118 },
119
120
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530121 # Category: "Domains"
122 {
123 "module_name": "Manufacturing",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530124 "category": "Domains",
125 "label": _("Manufacturing"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530126 "color": "#7f8c8d",
127 "icon": "octicon octicon-tools",
128 "type": "module",
129 "hidden": 1,
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530130 "description": "BOMS, work orders, operations, and timesheets."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530131 },
132 {
Prateeksha Singh2c147042019-01-29 10:12:17 +0530133 "module_name": "Retail",
134 "category": "Domains",
135 "label": _("Retail"),
136 "color": "#7f8c8d",
137 "icon": "octicon octicon-credit-card",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530138 "type": "module",
139 "hidden": 1,
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530140 "description": "Point of Sale and cashier closing."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530141 },
142 {
143 "module_name": "Education",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530144 "category": "Domains",
145 "label": _("Education"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530146 "color": "#428B46",
147 "icon": "octicon octicon-mortar-board",
148 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530149 "hidden": 1,
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530150 "description": "Student admissions, fees, courses and scores."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530151 },
Prateeksha Singh2c147042019-01-29 10:12:17 +0530152
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530153 {
154 "module_name": "Healthcare",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530155 "category": "Domains",
156 "label": _("Healthcare"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530157 "color": "#FF888B",
158 "icon": "fa fa-heartbeat",
159 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530160 "hidden": 1,
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530161 "description": "Patient appointments, procedures and tests."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530162 },
163 {
164 "module_name": "Agriculture",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530165 "category": "Domains",
166 "label": _("Agriculture"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530167 "color": "#8BC34A",
168 "icon": "octicon octicon-globe",
169 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530170 "hidden": 1,
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530171 "description": "Crop cycles, land areas, soil and plant analysis."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530172 },
173 {
174 "module_name": "Hotels",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530175 "category": "Domains",
176 "label": _("Hotels"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530177 "color": "#EA81E8",
178 "icon": "fa fa-bed",
179 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530180 "hidden": 1,
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530181 "description": "Hotel rooms, pricing, reservation and amenities."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530182 },
183
Vishala68234d2017-11-22 23:11:12 +0530184 {
Vishalca614532017-09-11 15:13:16 +0530185 "module_name": "Non Profit",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530186 "category": "Domains",
187 "label": _("Non Profit"),
Vishalca614532017-09-11 15:13:16 +0530188 "color": "#DE2B37",
189 "icon": "octicon octicon-heart",
190 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530191 "hidden": 1,
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530192 "description": "Volunteers, memberships, grants and chapters."
Himanshu0209ef02018-12-25 17:42:31 +0530193 },
194 {
Prateeksha Singh2c147042019-01-29 10:12:17 +0530195 "module_name": "Restaurant",
196 "category": "Domains",
197 "label": _("Restaurant"),
198 "color": "#EA81E8",
199 "icon": "fa fa-cutlery",
200 "_doctype": "Restaurant",
Himanshu0209ef02018-12-25 17:42:31 +0530201 "type": "module",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530202 "link": "List/Restaurant",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530203 "hidden": 1,
Prateeksha Singh2c147042019-01-29 10:12:17 +0530204 "description": "Menu, Orders and Table Reservations."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530205 },
206
207
208 {
209 "module_name": "Learn",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530210 "category": "Administration",
211 "label": _("Learn"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530212 "color": "#FF888B",
213 "icon": "octicon octicon-device-camera-video",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530214 "is_help": True,
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530215 "description": "Explore Help Articles and Videos."
216 },
217 {
218 "module_name": 'Marketplace',
Prateeksha Singh2c147042019-01-29 10:12:17 +0530219 "category": "Places",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530220 "label": _('Marketplace'),
Prateeksha Singh2c147042019-01-29 10:12:17 +0530221 "icon": "octicon octicon-star",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530222 "type": 'link',
Prateeksha Singh2c147042019-01-29 10:12:17 +0530223 "link": '#marketplace/home',
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530224 "color": '#FF4136',
225 'standard': 1,
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530226 "description": "Publish items to other ERPNext users."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530227 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530228 ]