blob: 6dc95b242c7dba857c82da0588fbc8aaf6d12f2b [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",
Prateeksha Singh8aa45942019-03-04 14:00:02 +053016 "disable_after_onboard": 1,
Prateeksha Singh8aa45942019-03-04 14:00:02 +053017 "description": "Dive into the basics for your organisation's needs.",
18 "onboard_present": 1
Prateeksha Singh01a045a2019-02-11 14:00:48 +053019 },
20 {
Prateeksha Singh34234072019-02-07 09:18:24 +053021 "module_name": "Accounting",
22 "category": "Modules",
23 "label": _("Accounting"),
24 "color": "#3498db",
25 "icon": "octicon octicon-repo",
26 "type": "module",
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",
Prateeksha Singh08a6de62019-02-12 07:41:52 +053036 "description": "Sales orders, quotations, customers and items."
Prateeksha Singh34234072019-02-07 09:18:24 +053037 },
38 {
39 "module_name": "Buying",
40 "category": "Modules",
41 "label": _("Buying"),
42 "color": "#c0392b",
43 "icon": "octicon octicon-briefcase",
44 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +053045 "description": "Purchasing, suppliers, material requests, and items."
Prateeksha Singh34234072019-02-07 09:18:24 +053046 },
47 {
48 "module_name": "Stock",
49 "category": "Modules",
50 "label": _("Stock"),
51 "color": "#f39c12",
52 "icon": "octicon octicon-package",
53 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +053054 "description": "Stock transactions, reports, serial numbers and batches."
Prateeksha Singh34234072019-02-07 09:18:24 +053055 },
56 {
57 "module_name": "Assets",
58 "category": "Modules",
59 "label": _("Assets"),
60 "color": "#4286f4",
61 "icon": "octicon octicon-database",
Prateeksha Singh34234072019-02-07 09:18:24 +053062 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +053063 "description": "Asset movement, maintainance and tools."
Prateeksha Singh34234072019-02-07 09:18:24 +053064 },
65 {
66 "module_name": "Projects",
67 "category": "Modules",
68 "label": _("Projects"),
69 "color": "#8e44ad",
70 "icon": "octicon octicon-rocket",
71 "type": "module",
Prateeksha Singh34234072019-02-07 09:18:24 +053072 "description": "Updates, Timesheets and Activities."
73 },
74 {
75 "module_name": "CRM",
76 "category": "Modules",
77 "label": _("CRM"),
78 "color": "#EF4DB6",
79 "icon": "octicon octicon-broadcast",
80 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +053081 "description": "Sales pipeline, leads, opportunities and customers."
Prateeksha Singh01a045a2019-02-11 14:00:48 +053082 },
83 {
84 "module_name": "Help Desk",
85 "category": "Modules",
86 "label": _("Help Desk"),
87 "color": "#1abc9c",
88 "icon": "fa fa-check-square-o",
89 "type": "module",
Prateeksha Singh01a045a2019-02-11 14:00:48 +053090 "description": "User interactions, support issues and knowledge base."
Prateeksha Singh34234072019-02-07 09:18:24 +053091 },
92 {
93 "module_name": "HR",
94 "category": "Modules",
95 "label": _("Human Resources"),
96 "color": "#2ecc71",
97 "icon": "octicon octicon-organization",
98 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +053099 "description": "Employees, attendance, payroll, leaves and shifts."
Prateeksha Singh34234072019-02-07 09:18:24 +0530100 },
101 {
102 "module_name": "Quality Management",
103 "category": "Modules",
104 "label": _("Quality"),
105 "color": "#1abc9c",
106 "icon": "fa fa-check-square-o",
107 "type": "module",
Prateeksha Singh01a045a2019-02-11 14:00:48 +0530108 "description": "Quality goals, procedures, reviews and action."
Prateeksha Singh34234072019-02-07 09:18:24 +0530109 },
110
111
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530112 # Category: "Domains"
113 {
114 "module_name": "Manufacturing",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530115 "category": "Domains",
116 "label": _("Manufacturing"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530117 "color": "#7f8c8d",
118 "icon": "octicon octicon-tools",
119 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530120 "description": "BOMS, work orders, operations, and timesheets."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530121 },
122 {
Prateeksha Singh2c147042019-01-29 10:12:17 +0530123 "module_name": "Retail",
124 "category": "Domains",
125 "label": _("Retail"),
126 "color": "#7f8c8d",
127 "icon": "octicon octicon-credit-card",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530128 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530129 "description": "Point of Sale and cashier closing."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530130 },
131 {
132 "module_name": "Education",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530133 "category": "Domains",
134 "label": _("Education"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530135 "color": "#428B46",
136 "icon": "octicon octicon-mortar-board",
137 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530138 "description": "Student admissions, fees, courses and scores."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530139 },
Prateeksha Singh2c147042019-01-29 10:12:17 +0530140
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530141 {
142 "module_name": "Healthcare",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530143 "category": "Domains",
144 "label": _("Healthcare"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530145 "color": "#FF888B",
146 "icon": "fa fa-heartbeat",
147 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530148 "description": "Patient appointments, procedures and tests."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530149 },
150 {
151 "module_name": "Agriculture",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530152 "category": "Domains",
153 "label": _("Agriculture"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530154 "color": "#8BC34A",
155 "icon": "octicon octicon-globe",
156 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530157 "description": "Crop cycles, land areas, soil and plant analysis."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530158 },
159 {
160 "module_name": "Hotels",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530161 "category": "Domains",
162 "label": _("Hotels"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530163 "color": "#EA81E8",
164 "icon": "fa fa-bed",
165 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530166 "description": "Hotel rooms, pricing, reservation and amenities."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530167 },
168
Vishala68234d2017-11-22 23:11:12 +0530169 {
Vishalca614532017-09-11 15:13:16 +0530170 "module_name": "Non Profit",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530171 "category": "Domains",
172 "label": _("Non Profit"),
Vishalca614532017-09-11 15:13:16 +0530173 "color": "#DE2B37",
174 "icon": "octicon octicon-heart",
175 "type": "module",
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530176 "description": "Volunteers, memberships, grants and chapters."
Himanshu0209ef02018-12-25 17:42:31 +0530177 },
178 {
Prateeksha Singh2c147042019-01-29 10:12:17 +0530179 "module_name": "Restaurant",
180 "category": "Domains",
181 "label": _("Restaurant"),
182 "color": "#EA81E8",
183 "icon": "fa fa-cutlery",
184 "_doctype": "Restaurant",
Himanshu0209ef02018-12-25 17:42:31 +0530185 "type": "module",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530186 "link": "List/Restaurant",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530187 "description": "Menu, Orders and Table Reservations."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530188 },
189
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530190 {
Prateeksha Singh8aa45942019-03-04 14:00:02 +0530191 "module_name": "Help",
Prateeksha Singh2c147042019-01-29 10:12:17 +0530192 "category": "Administration",
193 "label": _("Learn"),
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530194 "color": "#FF888B",
195 "icon": "octicon octicon-device-camera-video",
Prateeksha Singh8aa45942019-03-04 14:00:02 +0530196 "type": "module",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530197 "is_help": True,
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530198 "description": "Explore Help Articles and Videos."
199 },
200 {
201 "module_name": 'Marketplace',
Prateeksha Singh2c147042019-01-29 10:12:17 +0530202 "category": "Places",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530203 "label": _('Marketplace'),
Prateeksha Singh2c147042019-01-29 10:12:17 +0530204 "icon": "octicon octicon-star",
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530205 "type": 'link',
Prateeksha Singh2c147042019-01-29 10:12:17 +0530206 "link": '#marketplace/home',
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530207 "color": '#FF4136',
208 'standard': 1,
Prateeksha Singh08a6de62019-02-12 07:41:52 +0530209 "description": "Publish items to other ERPNext users."
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530210 },
Prateeksha Singh7cd6ebe2019-01-24 07:15:53 +0530211 ]