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