2015-02-24 06:54:53 +00:00
|
|
|
from __future__ import unicode_literals
|
2014-03-03 09:35:28 +00:00
|
|
|
from frappe import _
|
|
|
|
|
2014-05-08 06:13:18 +00:00
|
|
|
def get_data():
|
|
|
|
return [
|
|
|
|
{
|
2016-03-08 12:36:21 +00:00
|
|
|
"label": _("Employee and Attendance"),
|
2014-05-08 06:13:18 +00:00
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Employee",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "Employee Attendance Tool",
|
|
|
|
"hide_count": True
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Attendance",
|
|
|
|
},
|
2018-04-14 07:08:55 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Attendance Request",
|
|
|
|
},
|
2014-05-08 06:13:18 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "Upload Attendance",
|
|
|
|
"hide_count": True
|
2018-04-14 07:08:55 +00:00
|
|
|
}
|
2016-03-08 12:36:21 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2018-04-14 07:24:51 +00:00
|
|
|
"label": _("Leaves and Holiday"),
|
2016-03-08 12:36:21 +00:00
|
|
|
"items": [
|
2014-05-08 06:13:18 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-08-30 03:51:54 +00:00
|
|
|
"name": "Leave Application",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-08-30 03:51:54 +00:00
|
|
|
"name": "Leave Allocation",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-08-30 03:51:54 +00:00
|
|
|
"name": "Compensatory Leave Request",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
2018-04-14 07:08:55 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-08-30 03:51:54 +00:00
|
|
|
"name": "Leave Encashment",
|
2018-04-14 07:08:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-08-30 03:51:54 +00:00
|
|
|
"name": "Leave Period",
|
2018-04-14 07:08:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-08-30 03:51:54 +00:00
|
|
|
"name": "Leave Policy",
|
2018-04-14 07:08:55 +00:00
|
|
|
},
|
2014-05-08 06:13:18 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name":"Leave Type",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
2016-01-27 12:13:57 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "Holiday List",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
2016-03-08 12:36:21 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Leave Block List",
|
|
|
|
},
|
2018-04-14 07:08:55 +00:00
|
|
|
]
|
|
|
|
},
|
2014-05-08 06:13:18 +00:00
|
|
|
{
|
2016-03-08 12:36:21 +00:00
|
|
|
"label": _("Payroll"),
|
2014-05-08 06:13:18 +00:00
|
|
|
"items": [
|
2018-04-14 07:08:55 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Salary Structure Assignment",
|
|
|
|
},
|
2014-05-08 06:13:18 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "Salary Slip",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-04-14 11:34:56 +00:00
|
|
|
"name": "Payroll Entry"
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-04-14 11:34:56 +00:00
|
|
|
"name": "Employee Benefit Application",
|
2018-04-14 07:08:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-04-14 11:34:56 +00:00
|
|
|
"name": "Employee Benefit Claim",
|
2018-04-14 07:08:55 +00:00
|
|
|
},
|
2018-06-04 05:32:53 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Additional Salary",
|
|
|
|
},
|
2018-04-14 07:08:55 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-04-14 11:34:56 +00:00
|
|
|
"name": "Employee Tax Exemption Declaration",
|
2018-04-14 07:08:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Employee Tax Exemption Proof Submission",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-04-14 11:34:56 +00:00
|
|
|
"name": "Employee Incentive",
|
|
|
|
},
|
2018-05-15 13:47:31 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Retention Bonus",
|
|
|
|
},
|
2018-04-14 07:08:55 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Payroll Setup"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Payroll Period",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-07-02 06:53:59 +00:00
|
|
|
"name": "Salary Component",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
2018-04-14 07:08:55 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Salary Structure",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Employee Tax Exemption Category",
|
|
|
|
},
|
2018-05-10 09:34:32 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Employee Tax Exemption Sub Category"
|
|
|
|
}
|
2016-03-08 12:36:21 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2018-05-16 12:39:43 +00:00
|
|
|
"label": _("Travel and Expense Claim"),
|
2016-03-08 12:36:21 +00:00
|
|
|
"items": [
|
2017-12-14 07:55:57 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Employee Advance",
|
|
|
|
},
|
2014-05-08 06:13:18 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "Expense Claim",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "Expense Claim Type",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
2018-05-16 12:39:43 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Travel Request",
|
|
|
|
},
|
2016-03-08 12:36:21 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Appraisals"),
|
|
|
|
"items": [
|
2014-05-08 06:13:18 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "Appraisal",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "Appraisal Template",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
2017-01-31 06:12:44 +00:00
|
|
|
{
|
|
|
|
"type": "page",
|
|
|
|
"name": "team-updates",
|
|
|
|
"label": _("Team Updates")
|
|
|
|
},
|
2016-03-08 12:36:21 +00:00
|
|
|
]
|
|
|
|
},
|
2017-02-28 12:31:07 +00:00
|
|
|
{
|
2018-04-24 06:49:36 +00:00
|
|
|
"label": _("Loan Management"),
|
2017-02-28 12:31:07 +00:00
|
|
|
"icon": "icon-list",
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Loan Type",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-04-24 06:49:36 +00:00
|
|
|
"name": "Loan Application",
|
2017-02-28 12:31:07 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-04-24 06:49:36 +00:00
|
|
|
"name": "Loan"
|
2017-02-28 12:31:07 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2018-04-14 07:24:51 +00:00
|
|
|
{
|
|
|
|
"label": _("Employee Lifecycle"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Employee Transfer",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Employee Promotion",
|
2018-05-15 10:34:39 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-07-03 04:50:02 +00:00
|
|
|
"name": "Employee Separation",
|
2018-05-15 10:34:39 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Employee Onboarding"
|
2018-07-03 04:50:02 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Employee Separation Template",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Employee Onboarding Template"
|
2018-04-14 07:24:51 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Recruitment"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Job Applicant",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Job Opening",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Job Offer",
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2016-03-08 12:36:21 +00:00
|
|
|
{
|
2016-08-08 11:03:51 +00:00
|
|
|
"label": _("Training"),
|
2016-03-08 12:36:21 +00:00
|
|
|
"items": [
|
2017-10-20 06:01:15 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Training Program"
|
|
|
|
},
|
2016-08-08 11:03:51 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Training Event"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Training Result"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Training Feedback"
|
|
|
|
},
|
2016-03-08 12:36:21 +00:00
|
|
|
]
|
|
|
|
},
|
2018-04-14 07:08:55 +00:00
|
|
|
{
|
|
|
|
"label": _("Shift Management"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Shift Type",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Shift Request",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Shift Assignment",
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2017-01-09 06:04:58 +00:00
|
|
|
{
|
|
|
|
"label": _("Fleet Management"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Vehicle"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Vehicle Log"
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2016-03-08 12:36:21 +00:00
|
|
|
{
|
|
|
|
"label": _("Setup"),
|
2016-12-07 05:38:48 +00:00
|
|
|
"icon": "fa fa-cog",
|
2016-03-08 12:36:21 +00:00
|
|
|
"items": [
|
2014-05-08 06:13:18 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "HR Settings",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "Employment Type",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-03-08 12:36:21 +00:00
|
|
|
"name": "Branch",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Department",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Designation",
|
2014-05-08 06:13:18 +00:00
|
|
|
},
|
2016-11-21 06:40:20 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-04-14 07:24:51 +00:00
|
|
|
"name": "Employee Grade",
|
2018-03-20 07:07:02 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-07-03 04:38:45 +00:00
|
|
|
"name": "Daily Work Summary Group"
|
2018-04-14 07:08:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-04-14 07:24:51 +00:00
|
|
|
"name": "Employee Health Insurance"
|
2018-04-14 07:08:55 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-04-14 07:24:51 +00:00
|
|
|
"name": "Staffing Plan",
|
2018-02-21 09:45:43 +00:00
|
|
|
}
|
2014-05-08 06:13:18 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2016-03-08 12:36:21 +00:00
|
|
|
"label": _("Reports"),
|
2016-12-07 05:38:48 +00:00
|
|
|
"icon": "fa fa-list",
|
2014-05-08 06:13:18 +00:00
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Employee Leave Balance",
|
|
|
|
"doctype": "Leave Application"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Employee Birthday",
|
|
|
|
"doctype": "Employee"
|
|
|
|
},
|
2016-01-27 06:41:47 +00:00
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
2016-07-14 06:42:26 +00:00
|
|
|
"name": "Employees working on a holiday",
|
2016-01-27 06:41:47 +00:00
|
|
|
"doctype": "Employee"
|
|
|
|
},
|
2014-05-08 06:13:18 +00:00
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"name": "Employee Information",
|
|
|
|
"doctype": "Employee"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
2017-01-11 14:13:16 +00:00
|
|
|
"name": "Salary Register",
|
2014-05-08 06:13:18 +00:00
|
|
|
"doctype": "Salary Slip"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Monthly Attendance Sheet",
|
|
|
|
"doctype": "Attendance"
|
|
|
|
},
|
2017-01-09 06:04:58 +00:00
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Vehicle Expenses",
|
|
|
|
"doctype": "Vehicle"
|
|
|
|
},
|
2016-01-27 06:41:47 +00:00
|
|
|
|
2014-05-08 06:13:18 +00:00
|
|
|
]
|
|
|
|
},
|
2015-10-27 11:31:27 +00:00
|
|
|
{
|
|
|
|
"label": _("Help"),
|
2016-12-07 05:38:48 +00:00
|
|
|
"icon": "fa fa-facetime-video",
|
2015-10-27 11:31:27 +00:00
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "help",
|
|
|
|
"label": _("Setting up Employees"),
|
|
|
|
"youtube_id": "USfIUdZlUhw"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "help",
|
|
|
|
"label": _("Leave Management"),
|
|
|
|
"youtube_id": "fc0p_AXebc8"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "help",
|
|
|
|
"label": _("Expense Claims"),
|
|
|
|
"youtube_id": "5SZHJF--ZFY"
|
2018-02-16 07:28:04 +00:00
|
|
|
}
|
2015-10-27 11:31:27 +00:00
|
|
|
]
|
2018-05-26 03:56:03 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Analytics"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Department Analytics",
|
|
|
|
"doctype": "Employee"
|
|
|
|
},
|
|
|
|
]
|
2015-10-27 11:31:27 +00:00
|
|
|
}
|
2014-05-08 06:13:18 +00:00
|
|
|
]
|