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",
|
|
|
|
"name": "Student"
|
|
|
|
},
|
2016-07-29 13:11:39 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Student Log"
|
|
|
|
},
|
2016-07-22 19:05:48 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Student Batch"
|
|
|
|
},
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Student Group"
|
|
|
|
},
|
2016-07-22 19:05:48 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Student Group Creation Tool"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Admission"),
|
|
|
|
"items": [
|
|
|
|
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Student 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"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Program Enrollment Tool"
|
2016-11-17 18:52:31 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-11-21 17:04:23 +05:30
|
|
|
"name": "Student Batch Creation Tool"
|
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": [
|
|
|
|
{
|
|
|
|
"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
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-12-09 17:38:59 +05:30
|
|
|
"name": "Student Attendance Tool"
|
2016-11-28 15:25:17 +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-28 15:25:17 +05:30
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"is_query_report": True,
|
2016-12-05 17:53:41 +05:30
|
|
|
"name": "Student Monthly Attendance Sheet",
|
|
|
|
"doctype": "Student Attendance"
|
2016-11-17 18:52:31 +05:30
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2016-11-28 15:45:38 +05:30
|
|
|
{
|
|
|
|
"label": _("Schedule"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Course Schedule",
|
|
|
|
"route": "Calendar/Course Schedule"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Course Scheduling Tool"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2016-11-17 18:52:31 +05:30
|
|
|
{
|
|
|
|
"label": _("Assessment"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Assessment"
|
2016-07-21 16:01:59 +05:30
|
|
|
},
|
2016-11-17 15:35:54 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-11-17 18:52:31 +05:30
|
|
|
"name": "Assessment Group"
|
2016-11-17 15:35:54 +05:30
|
|
|
},
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-11-17 18:52:31 +05:30
|
|
|
"name": "Grading Structure"
|
2016-07-21 16:01:59 +05:30
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": _("Fees"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Fees"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Fee Structure"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Fee Category"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "report",
|
|
|
|
"name": "Student Fee Collection",
|
|
|
|
"doctype": "Fees",
|
|
|
|
"is_query_report": True
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2016-07-22 19:05:48 +05:30
|
|
|
{
|
|
|
|
"label": _("LMS"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Announcement"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Topic"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Discussion"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2016-07-21 16:01:59 +05:30
|
|
|
{
|
|
|
|
"label": _("Setup"),
|
|
|
|
"items": [
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Course"
|
|
|
|
},
|
2016-09-03 16:35:06 +01:00
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-09-05 16:55:54 +05:30
|
|
|
"name": "Program"
|
2016-09-03 16:35:06 +01:00
|
|
|
},
|
2016-11-17 18:52:31 +05:30
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-11-21 17:04:23 +05:30
|
|
|
"name": "Instructor"
|
2016-09-05 16:55:54 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
2016-11-21 17:04:23 +05:30
|
|
|
"name": "Room"
|
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
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Academic Term"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "doctype",
|
|
|
|
"name": "Academic Year"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
]
|