blob: 0a969ed2638f05cbf80ec0bd412ba56e82ad99c4 [file] [log] [blame]
Anand Doshid57e7932015-02-24 12:24:53 +05301from __future__ import unicode_literals
Anand Doshif5794f12014-03-03 15:05:28 +05302from frappe import _
3
Anand Doshi08ef4672014-05-08 11:43:18 +05304def get_data():
5 return [
6 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +05307 "label": _("Employee and Attendance"),
Anand Doshi08ef4672014-05-08 11:43:18 +05308 "items": [
9 {
10 "type": "doctype",
11 "name": "Employee",
12 "description": _("Employee records."),
13 },
14 {
15 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053016 "name": "Employee Attendance Tool",
17 "label": _("Employee Attendance Tool"),
Rushabh Mehta8a065e02016-06-22 12:58:39 +053018 "description":_("Mark Attendance for multiple employees"),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053019 "hide_count": True
Anand Doshi08ef4672014-05-08 11:43:18 +053020 },
21 {
22 "type": "doctype",
23 "name": "Attendance",
24 "description": _("Attendance record."),
25 },
26 {
27 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053028 "name": "Upload Attendance",
29 "description":_("Upload attendance from a .csv file"),
30 "hide_count": True
Anand Doshi08ef4672014-05-08 11:43:18 +053031 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053032 ]
33 },
34 {
35 "label": _("Recruitment"),
36 "items": [
Anand Doshi08ef4672014-05-08 11:43:18 +053037 {
38 "type": "doctype",
39 "name": "Job Applicant",
40 "description": _("Applicant for a Job."),
41 },
42 {
43 "type": "doctype",
44 "name": "Job Opening",
45 "description": _("Opening for a Job."),
46 },
Neil Trini Lasradoe1d620b2015-03-04 16:01:45 +053047 {
48 "type": "doctype",
49 "name": "Offer Letter",
50 "description": _("Offer candidate a Job."),
51 },
Anand Doshi08ef4672014-05-08 11:43:18 +053052 ]
53 },
54 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053055 "label": _("Leaves and Holiday"),
Anand Doshi08ef4672014-05-08 11:43:18 +053056 "items": [
57 {
58 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053059 "name": "Leave Application",
60 "description": _("Applications for leave."),
61 },
62 {
63 "type": "doctype",
64 "name":"Leave Type",
65 "description": _("Type of leaves like casual, sick etc."),
66 },
67 {
68 "type": "doctype",
69 "name": "Holiday List",
70 "description": _("Holiday master.")
71 },
72 {
73 "type": "doctype",
74 "name": "Leave Allocation",
75 "description": _("Allocate leaves for a period.")
76 },
77 {
78 "type": "doctype",
79 "name": "Leave Control Panel",
80 "label": _("Leave Allocation Tool"),
81 "description":_("Allocate leaves for the year."),
Anand Doshi08ef4672014-05-08 11:43:18 +053082 "hide_count": True
83 },
84 {
85 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +053086 "name": "Leave Block List",
87 "description": _("Block leave applications by department.")
88 },
89
90 ]
91 },
92 {
93 "label": _("Payroll"),
94 "items": [
95 {
96 "type": "doctype",
97 "name": "Salary Slip",
98 "description": _("Monthly salary statement."),
Anand Doshi08ef4672014-05-08 11:43:18 +053099 },
100 {
101 "type": "doctype",
Valmik Jangla07364f52016-01-27 17:43:57 +0530102 "name": "Process Payroll",
103 "label": _("Process Payroll"),
104 "description":_("Generate Salary Slips"),
105 "hide_count": True
106 },
Valmik Jangla07364f52016-01-27 17:43:57 +0530107 {
108 "type": "doctype",
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530109 "name": "Salary Structure",
110 "description": _("Salary template master.")
Anand Doshi08ef4672014-05-08 11:43:18 +0530111 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530112 {
113 "type": "doctype",
Kanchan Chauhand963b762016-07-02 12:23:59 +0530114 "name": "Salary Component",
115 "label": _("Salary Components"),
116 "description": _("Earnings, Deductions and other Salary components")
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530117 },
118
119 ]
120 },
121 {
122 "label": _("Expense Claims"),
123 "items": [
124 {
125 "type": "doctype",
126 "name": "Expense Claim",
127 "description": _("Claims for company expense."),
128 },
129 {
130 "type": "doctype",
131 "name": "Expense Claim Type",
132 "description": _("Types of Expense Claim.")
133 },
134 ]
135 },
136 {
137 "label": _("Appraisals"),
138 "items": [
139 {
140 "type": "doctype",
141 "name": "Appraisal",
142 "description": _("Performance appraisal."),
143 },
144 {
145 "type": "doctype",
146 "name": "Appraisal Template",
147 "description": _("Template for performance appraisals.")
148 },
Rushabh Mehta7ec4b712017-01-31 11:42:44 +0530149 {
150 "type": "page",
151 "name": "team-updates",
152 "label": _("Team Updates")
153 },
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530154 ]
155 },
156
157 {
Neil Trini Lasrado984ee372016-08-08 16:33:51 +0530158 "label": _("Training"),
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530159 "items": [
Neil Trini Lasrado984ee372016-08-08 16:33:51 +0530160 {
161 "type": "doctype",
162 "name": "Training Event"
163 },
164 {
165 "type": "doctype",
166 "name": "Training Result"
167 },
168 {
169 "type": "doctype",
170 "name": "Training Feedback"
171 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530172 ]
173 },
Rushabh Mehta7ec4b712017-01-31 11:42:44 +0530174
Kanchan Chauhanf80c2b92017-01-09 11:34:58 +0530175 {
176 "label": _("Fleet Management"),
177 "items": [
178 {
179 "type": "doctype",
180 "name": "Vehicle"
181 },
182 {
183 "type": "doctype",
184 "name": "Vehicle Log"
185 },
186 ]
187 },
Rushabh Mehta7ec4b712017-01-31 11:42:44 +0530188
Neil Trini Lasrado984ee372016-08-08 16:33:51 +0530189
Anand Doshi08ef4672014-05-08 11:43:18 +0530190 {
191 "label": _("Setup"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530192 "icon": "fa fa-cog",
Anand Doshi08ef4672014-05-08 11:43:18 +0530193 "items": [
194 {
195 "type": "doctype",
196 "name": "HR Settings",
197 "description": _("Settings for HR Module")
198 },
199 {
200 "type": "doctype",
Anand Doshi08ef4672014-05-08 11:43:18 +0530201 "name": "Employment Type",
202 "description": _("Types of employment (permanent, contract, intern etc.).")
203 },
204 {
205 "type": "doctype",
206 "name": "Branch",
207 "description": _("Organization branch master.")
208 },
209 {
210 "type": "doctype",
211 "name": "Department",
212 "description": _("Organization unit (department) master.")
213 },
214 {
215 "type": "doctype",
216 "name": "Designation",
217 "description": _("Employee designation (e.g. CEO, Director etc.).")
218 },
Rushabh Mehta557e7f72016-11-21 12:10:20 +0530219 {
220 "type": "doctype",
221 "name": "Daily Work Summary Settings"
222 },
Anand Doshi08ef4672014-05-08 11:43:18 +0530223 ]
224 },
225 {
Rushabh Mehtad1e1c522016-03-08 18:06:21 +0530226 "label": _("Reports"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530227 "icon": "fa fa-list",
Anand Doshi08ef4672014-05-08 11:43:18 +0530228 "items": [
229 {
230 "type": "report",
231 "is_query_report": True,
232 "name": "Employee Leave Balance",
233 "doctype": "Leave Application"
234 },
235 {
236 "type": "report",
237 "is_query_report": True,
238 "name": "Employee Birthday",
239 "doctype": "Employee"
240 },
241 {
242 "type": "report",
Valmik Jangla1890c792016-01-27 12:11:47 +0530243 "is_query_report": True,
Kanchan Chauhan7ff0c4e2016-07-14 12:12:26 +0530244 "name": "Employees working on a holiday",
Valmik Jangla1890c792016-01-27 12:11:47 +0530245 "doctype": "Employee"
246 },
247 {
248 "type": "report",
Anand Doshi08ef4672014-05-08 11:43:18 +0530249 "name": "Employee Information",
250 "doctype": "Employee"
251 },
252 {
253 "type": "report",
254 "is_query_report": True,
Kanchan Chauhan2f3ae912017-01-11 19:43:16 +0530255 "name": "Salary Register",
Anand Doshi08ef4672014-05-08 11:43:18 +0530256 "doctype": "Salary Slip"
257 },
258 {
259 "type": "report",
260 "is_query_report": True,
261 "name": "Monthly Attendance Sheet",
262 "doctype": "Attendance"
263 },
Kanchan Chauhanf80c2b92017-01-09 11:34:58 +0530264 {
265 "type": "report",
266 "is_query_report": True,
267 "name": "Vehicle Expenses",
268 "doctype": "Vehicle"
269 },
Valmik Jangla1890c792016-01-27 12:11:47 +0530270
Anand Doshi08ef4672014-05-08 11:43:18 +0530271 ]
272 },
Sambhaji Kolatefd539912015-10-27 17:01:27 +0530273 {
KanchanChauhanfbaa6192017-01-30 15:15:58 +0530274 "label": _("Employee Loan Management"),
275 "icon": "icon-list",
276 "items": [
277 {
278 "type": "doctype",
279 "name": "Loan Type",
280 "description": _("Define various loan types")
281 },
282 {
283 "type": "doctype",
284 "name": "Employee Loan Application",
285 "description": _("Employee Loan Application")
286 },
287 {
288 "type": "doctype",
289 "name": "Employee Loan"
290 },
291 ]
292 },
293 {
Sambhaji Kolatefd539912015-10-27 17:01:27 +0530294 "label": _("Help"),
Rushabh Mehta2167ff52016-12-07 11:08:48 +0530295 "icon": "fa fa-facetime-video",
Sambhaji Kolatefd539912015-10-27 17:01:27 +0530296 "items": [
297 {
298 "type": "help",
299 "label": _("Setting up Employees"),
300 "youtube_id": "USfIUdZlUhw"
301 },
302 {
303 "type": "help",
304 "label": _("Leave Management"),
305 "youtube_id": "fc0p_AXebc8"
306 },
307 {
308 "type": "help",
309 "label": _("Expense Claims"),
310 "youtube_id": "5SZHJF--ZFY"
311 },
312 {
313 "type": "help",
314 "label": _("Processing Payroll"),
315 "youtube_id": "apgE-f25Rm0"
316 },
317 ]
318 }
Anand Doshi08ef4672014-05-08 11:43:18 +0530319 ]