2016-07-21 16:01:59 +05:30
|
|
|
from __future__ import unicode_literals
|
|
|
|
from frappe import _
|
|
|
|
|
|
|
|
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
|
|
|
},
|
2016-07-29 13:11:39 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-12-28 16:15:35 +05:30
|
|
|
"name": "Guardian"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-07-29 13:11:39 +05:30
|
|
|
"name": "Student Log"
|
|
|
|
},
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Student Group"
|
2016-07-22 19:05:48 +05:30
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Admission"),
|
|
|
|
"items": [
|
|
|
|
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Student Applicant"
|
|
|
|
},
|
2018-10-02 15:41:23 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Web Academy Applicant"
|
|
|
|
},
|
2016-09-15 14:48:13 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Student Admission"
|
|
|
|
},
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Program Enrollment"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2016-11-28 15:45:38 +05:30
|
|
|
"label": _("Attendance"),
|
2016-07-21 16:01:59 +05:30
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Student Attendance"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-11-28 15:45:38 +05:30
|
|
|
"name": "Student Leave Application"
|
2016-08-01 23:45:33 +05:30
|
|
|
},
|
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",
|
|
|
|
"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",
|
|
|
|
"doctype": "Student Attendance"
|
2016-12-01 12:53:40 +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": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-02-08 19:00:51 +05:30
|
|
|
"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 15:45:38 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Course Scheduling Tool"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2016-11-17 18:52:31 +05:30
|
|
|
{
|
|
|
|
"label": _("Assessment"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2017-01-04 17:00:43 +05:30
|
|
|
"name": "Assessment Plan"
|
2016-07-21 16:01:59 +05:30
|
|
|
},
|
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
|
|
|
},
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-12-14 17:49:47 +05:30
|
|
|
"name": "Assessment Result"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2017-02-01 18:40:30 +05:30
|
|
|
"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",
|
|
|
|
"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",
|
2017-05-05 15:04:59 +05:30
|
|
|
"doctype": "Assessment Result"
|
|
|
|
},
|
2017-11-13 18:56:53 +05:30
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
|
|
|
"name": "Assessment Plan Status",
|
|
|
|
"doctype": "Assessment Plan"
|
|
|
|
},
|
2018-03-21 17:50:42 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Student Report Generation Tool"
|
|
|
|
}
|
2016-07-21 16:01:59 +05:30
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Fees"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Fees"
|
|
|
|
},
|
2017-09-01 15:18:04 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Fee Schedule"
|
|
|
|
},
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Fee Structure"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Fee Category"
|
2018-02-08 19:00:51 +05:30
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Schedule"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Course Schedule",
|
2020-11-18 15:00:34 +05:30
|
|
|
"route": "/app/List/Course Schedule/Calendar"
|
2016-07-21 16:01:59 +05:30
|
|
|
},
|
|
|
|
{
|
2018-02-08 19:00:51 +05:30
|
|
|
"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,
|
2018-12-12 16:10:23 +05:30
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Content Masters"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Article"
|
2018-10-15 16:04:25 +05:30
|
|
|
},
|
2016-11-17 18:52:31 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-12-12 16:10:23 +05:30
|
|
|
"name": "Video"
|
2016-09-05 16:55:54 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2018-12-12 16:10:23 +05:30
|
|
|
"name": "Quiz"
|
2018-02-08 19:00:51 +05:30
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2018-10-15 16:04:25 +05:30
|
|
|
{
|
|
|
|
"label": _("LMS Activity"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Course Enrollment"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Course Activity"
|
2018-10-16 13:04:11 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"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": [
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-11-21 17:04:23 +05:30
|
|
|
"name": "Student Category"
|
2016-07-21 16:01:59 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-11-21 17:04:23 +05:30
|
|
|
"name": "Student Batch Name"
|
2016-07-21 16:01:59 +05:30
|
|
|
},
|
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
|
|
|
},
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Academic Term"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Academic Year"
|
2017-04-05 14:55:06 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2017-11-23 15:22:10 +05:30
|
|
|
"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",
|
|
|
|
"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 16:01:59 +05:30
|
|
|
]
|