2016-07-21 10:31:59 +00:00
|
|
|
from frappe import _
|
|
|
|
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2016-07-21 10:31:59 +00:00
|
|
|
def get_data():
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
"label": _("Student"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2019-03-14 07:01:25 +00:00
|
|
|
"name": "Student",
|
|
|
|
"onboard": 1,
|
2016-07-21 10:31:59 +00:00
|
|
|
},
|
2016-07-29 07:41:39 +00:00
|
|
|
{"type": "doctype", "name": "Guardian"},
|
|
|
|
{"type": "doctype", "name": "Student Log"},
|
2016-07-21 10:31:59 +00:00
|
|
|
{"type": "doctype", "name": "Student Group"},
|
2016-07-22 13:35:48 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Admission"),
|
|
|
|
"items": [
|
2016-07-21 10:31:59 +00:00
|
|
|
{"type": "doctype", "name": "Student Applicant"},
|
2018-10-02 10:11:23 +00:00
|
|
|
{"type": "doctype", "name": "Web Academy Applicant"},
|
2016-09-15 09:18:13 +00:00
|
|
|
{"type": "doctype", "name": "Student Admission"},
|
2016-07-21 10:31:59 +00:00
|
|
|
{"type": "doctype", "name": "Program Enrollment"},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2016-11-28 10:15:38 +00:00
|
|
|
"label": _("Attendance"),
|
2016-07-21 10:31:59 +00:00
|
|
|
"items": [
|
|
|
|
{"type": "doctype", "name": "Student Attendance"},
|
2016-11-28 10:15:38 +00:00
|
|
|
{"type": "doctype", "name": "Student Leave Application"},
|
2016-11-28 11:27:02 +00:00
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
2016-12-05 12:23:41 +00:00
|
|
|
"name": "Absent Student Report",
|
|
|
|
"doctype": "Student Attendance",
|
2016-11-28 11:27:02 +00:00
|
|
|
},
|
2016-12-01 07:23:40 +00:00
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
2016-12-05 12:23:41 +00:00
|
|
|
"name": "Student Batch-Wise Attendance",
|
|
|
|
"doctype": "Student Attendance",
|
2016-12-01 07:23:40 +00:00
|
|
|
},
|
2016-11-17 13:22:31 +00:00
|
|
|
],
|
|
|
|
},
|
2016-11-28 10:15:38 +00:00
|
|
|
{
|
2018-02-08 13:30:51 +00:00
|
|
|
"label": _("Tools"),
|
2016-11-28 10:15:38 +00:00
|
|
|
"items": [
|
2018-02-08 13:30:51 +00:00
|
|
|
{"type": "doctype", "name": "Student Attendance Tool"},
|
|
|
|
{"type": "doctype", "name": "Assessment Result Tool"},
|
|
|
|
{"type": "doctype", "name": "Student Group Creation Tool"},
|
|
|
|
{"type": "doctype", "name": "Program Enrollment Tool"},
|
2016-11-28 10:15:38 +00:00
|
|
|
{"type": "doctype", "name": "Course Scheduling Tool"},
|
|
|
|
],
|
|
|
|
},
|
2016-11-17 13:22:31 +00:00
|
|
|
{
|
|
|
|
"label": _("Assessment"),
|
|
|
|
"items": [
|
2017-01-04 11:30:43 +00:00
|
|
|
{"type": "doctype", "name": "Assessment Plan"},
|
2016-11-17 10:05:54 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2017-02-13 14:10:27 +00:00
|
|
|
"name": "Assessment Group",
|
|
|
|
"link": "Tree/Assessment Group",
|
2016-11-17 10:05:54 +00:00
|
|
|
},
|
2016-12-14 12:19:47 +00:00
|
|
|
{"type": "doctype", "name": "Assessment Result"},
|
2017-02-01 13:10:30 +00:00
|
|
|
{"type": "doctype", "name": "Assessment Criteria"},
|
2018-02-08 13:30:51 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Assessment Reports"),
|
|
|
|
"items": [
|
2017-01-09 12:55:43 +00:00
|
|
|
{
|
2018-02-08 13:30:51 +00:00
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Course wise Assessment Report",
|
|
|
|
"doctype": "Assessment Result",
|
2017-05-05 09:34:59 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
2018-02-08 13:30:51 +00:00
|
|
|
"name": "Final Assessment Grades",
|
2017-05-05 09:34:59 +00:00
|
|
|
"doctype": "Assessment Result",
|
|
|
|
},
|
2017-11-13 13:26:53 +00:00
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Assessment Plan Status",
|
|
|
|
"doctype": "Assessment Plan",
|
|
|
|
},
|
2018-03-21 12:20:42 +00:00
|
|
|
{"type": "doctype", "name": "Student Report Generation Tool"},
|
2016-07-21 10:31:59 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Fees"),
|
|
|
|
"items": [
|
|
|
|
{"type": "doctype", "name": "Fees"},
|
2017-09-01 09:48:04 +00:00
|
|
|
{"type": "doctype", "name": "Fee Schedule"},
|
2016-07-21 10:31:59 +00:00
|
|
|
{"type": "doctype", "name": "Fee Structure"},
|
|
|
|
{"type": "doctype", "name": "Fee Category"},
|
2018-02-08 13:30:51 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Schedule"),
|
|
|
|
"items": [
|
2020-11-18 09:30:34 +00:00
|
|
|
{"type": "doctype", "name": "Course Schedule", "route": "/app/List/Course Schedule/Calendar"},
|
2018-02-08 13:30:51 +00:00
|
|
|
{"type": "doctype", "name": "Course Scheduling Tool"},
|
2016-07-21 10:31:59 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2018-02-08 13:30:51 +00:00
|
|
|
"label": _("Masters"),
|
2016-07-21 10:31:59 +00:00
|
|
|
"items": [
|
2018-10-02 10:11:23 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2019-03-14 07:01:25 +00:00
|
|
|
"name": "Program",
|
|
|
|
},
|
|
|
|
{
|
2019-03-14 09:44:25 +00:00
|
|
|
"type": "doctype",
|
2019-03-14 07:01:25 +00:00
|
|
|
"name": "Course",
|
|
|
|
"onboard": 1,
|
2018-10-02 10:11:23 +00:00
|
|
|
},
|
2016-09-03 15:35:06 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2019-03-14 07:01:25 +00:00
|
|
|
"name": "Topic",
|
|
|
|
},
|
|
|
|
{
|
2019-03-14 09:44:25 +00:00
|
|
|
"type": "doctype",
|
2019-03-14 07:01:25 +00:00
|
|
|
"name": "Instructor",
|
|
|
|
"onboard": 1,
|
2016-09-03 15:35:06 +00:00
|
|
|
},
|
2018-10-15 10:34:25 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2019-03-14 07:01:25 +00:00
|
|
|
"name": "Room",
|
|
|
|
"onboard": 1,
|
2018-12-12 10:40:23 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Content Masters"),
|
|
|
|
"items": [
|
|
|
|
{"type": "doctype", "name": "Article"},
|
2016-11-17 13:22:31 +00:00
|
|
|
{"type": "doctype", "name": "Video"},
|
2016-09-05 11:25:54 +00:00
|
|
|
{"type": "doctype", "name": "Quiz"},
|
2018-02-08 13:30:51 +00:00
|
|
|
],
|
|
|
|
},
|
2018-10-15 10:34:25 +00:00
|
|
|
{
|
|
|
|
"label": _("LMS Activity"),
|
|
|
|
"items": [
|
|
|
|
{"type": "doctype", "name": "Course Enrollment"},
|
|
|
|
{"type": "doctype", "name": "Course Activity"},
|
2018-10-16 07:34:11 +00:00
|
|
|
{"type": "doctype", "name": "Quiz Activity"},
|
2018-10-15 10:34:25 +00:00
|
|
|
],
|
|
|
|
},
|
2018-02-08 13:30:51 +00:00
|
|
|
{
|
2019-02-11 09:44:50 +00:00
|
|
|
"label": _("Settings"),
|
2018-02-08 13:30:51 +00:00
|
|
|
"items": [
|
2016-11-21 11:34:23 +00:00
|
|
|
{"type": "doctype", "name": "Student Category"},
|
|
|
|
{"type": "doctype", "name": "Student Batch Name"},
|
2017-11-13 13:26:53 +00:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2019-03-14 07:01:25 +00:00
|
|
|
"name": "Grading Scale",
|
|
|
|
"onboard": 1,
|
2017-11-13 13:26:53 +00:00
|
|
|
},
|
2016-07-21 10:31:59 +00:00
|
|
|
{"type": "doctype", "name": "Academic Term"},
|
|
|
|
{"type": "doctype", "name": "Academic Year"},
|
2017-11-23 09:52:10 +00:00
|
|
|
{"type": "doctype", "name": "Education Settings"},
|
2016-07-21 10:31:59 +00:00
|
|
|
],
|
|
|
|
},
|
2018-02-08 13:30:51 +00:00
|
|
|
{
|
|
|
|
"label": _("Other Reports"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Student and Guardian Contact Details",
|
|
|
|
"doctype": "Program Enrollment",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Student Monthly Attendance Sheet",
|
|
|
|
"doctype": "Student Attendance",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"name": "Student Fee Collection",
|
|
|
|
"doctype": "Fees",
|
|
|
|
"is_query_report": True,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2016-07-21 10:31:59 +00:00
|
|
|
]
|