blob: 1e7d1b035bb4d0f22523b6b204a6d1b8a7b04ded [file] [log] [blame]
Rushabh Mehta20038ad2016-07-21 16:01:59 +05301from __future__ import unicode_literals
2from frappe import _
3
4def get_data():
5 return [
6 {
7 "label": _("Student"),
8 "items": [
Rushabh Mehta20038ad2016-07-21 16:01:59 +05309 {
10 "type": "doctype",
11 "name": "Student"
12 },
13 {
14 "type": "doctype",
Neil Trini Lasrado986927c2016-12-28 16:15:35 +053015 "name": "Guardian"
16 },
17 {
18 "type": "doctype",
Neil Trini Lasrado1e5c2512016-07-29 13:11:39 +053019 "name": "Student Log"
20 },
21 {
22 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053023 "name": "Student Group"
24 },
25 {
26 "type": "doctype",
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053027 "name": "Student Group Creation Tool"
Manas Solanki3528d082017-03-30 12:17:40 +053028 },
29 {
30 "type": "report",
31 "is_query_report": True,
32 "name": "Student and Guardian Contact Details",
33 "doctype": "Program Enrollment"
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053034 }
Manas Solanki3528d082017-03-30 12:17:40 +053035
Neil Trini Lasrado6cfb60d2016-07-22 19:05:48 +053036 ]
37 },
38 {
39 "label": _("Admission"),
40 "items": [
41
42 {
43 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053044 "name": "Student Applicant"
45 },
46 {
47 "type": "doctype",
Neil Trini Lasrado83d81202016-09-15 14:48:13 +053048 "name": "Student Admission"
49 },
50 {
51 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053052 "name": "Program Enrollment"
53 },
54 {
55 "type": "doctype",
56 "name": "Program Enrollment Tool"
Rushabh Mehta20038ad2016-07-21 16:01:59 +053057 }
58 ]
59 },
60 {
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +053061 "label": _("Attendance"),
Rushabh Mehta20038ad2016-07-21 16:01:59 +053062 "items": [
63 {
64 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +053065 "name": "Student Attendance"
66 },
67 {
68 "type": "doctype",
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +053069 "name": "Student Leave Application"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053070 },
71 {
72 "type": "doctype",
Neil Trini Lasradoeccbf432016-12-09 17:38:59 +053073 "name": "Student Attendance Tool"
Neil Trini Lasradod3a410b2016-11-28 15:25:17 +053074 },
75 {
76 "type": "report",
77 "is_query_report": True,
Neil Trini Lasradof5c2cf42016-12-05 17:53:41 +053078 "name": "Absent Student Report",
79 "doctype": "Student Attendance"
Neil Trini Lasrado331361d2016-11-28 16:57:02 +053080 },
81 {
82 "type": "report",
83 "is_query_report": True,
Neil Trini Lasradof5c2cf42016-12-05 17:53:41 +053084 "name": "Student Batch-Wise Attendance",
85 "doctype": "Student Attendance"
Neil Trini Lasrado26078982016-12-01 12:53:40 +053086 },
87 {
88 "type": "report",
89 "is_query_report": True,
Neil Trini Lasradof5c2cf42016-12-05 17:53:41 +053090 "name": "Student Monthly Attendance Sheet",
91 "doctype": "Student Attendance"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +053092 }
93 ]
94 },
95 {
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +053096 "label": _("Schedule"),
97 "items": [
98 {
99 "type": "doctype",
100 "name": "Course Schedule",
Manas Solankiae300262017-04-17 11:52:35 +0530101 "route": "List/Course Schedule/Calendar"
Neil Trini Lasrado14b27c52016-11-28 15:45:38 +0530102 },
103 {
104 "type": "doctype",
105 "name": "Course Scheduling Tool"
106 }
107 ]
108 },
109 {
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530110 "label": _("Assessment"),
111 "items": [
112 {
113 "type": "doctype",
Neil Trini Lasradoa56224c2017-01-04 17:00:43 +0530114 "name": "Assessment Plan"
Neil Trini Lasrado50b22782016-08-01 23:45:33 +0530115 },
116 {
117 "type": "doctype",
Neil Trini Lasradoe4903b72017-02-13 19:40:27 +0530118 "name": "Assessment Group",
119 "link": "Tree/Assessment Group",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530120 },
121 {
122 "type": "doctype",
Neil Trini Lasrado06ed74d2016-12-14 17:49:47 +0530123 "name": "Assessment Result"
124 },
125 {
126 "type": "doctype",
Neil Trini Lasrado749516c2017-02-01 18:40:30 +0530127 "name": "Assessment Criteria"
128 },
129 {
130 "type": "doctype",
131 "name": "Assessment Criteria Group"
Neil Trini Lasrado2a9e0f62017-01-09 18:25:43 +0530132 },
133 {
134 "type": "doctype",
135 "name": "Assessment Result Tool"
Manas Solanki85480b32017-05-05 15:04:59 +0530136 },
137 {
138 "type": "report",
139 "is_query_report": True,
140 "name": "Course wise Assessment Report",
141 "doctype": "Assessment Result"
142 },
Manas Solankie5aa9c52017-11-13 18:56:53 +0530143 {
144 "type": "report",
145 "is_query_report": True,
146 "name": "Assessment Plan Status",
147 "doctype": "Assessment Plan"
148 },
Manas Solanki85480b32017-05-05 15:04:59 +0530149
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530150 ]
151 },
152 {
153 "label": _("Fees"),
154 "items": [
155 {
156 "type": "doctype",
157 "name": "Fees"
158 },
159 {
160 "type": "doctype",
Manas Solanki9b44c162017-09-01 15:18:04 +0530161 "name": "Fee Schedule"
162 },
163 {
164 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530165 "name": "Fee Structure"
166 },
167 {
168 "type": "doctype",
169 "name": "Fee Category"
170 },
171 {
172 "type": "report",
173 "name": "Student Fee Collection",
174 "doctype": "Fees",
175 "is_query_report": True
176 }
177 ]
178 },
179 {
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530180 "label": _("Setup"),
181 "items": [
182 {
183 "type": "doctype",
184 "name": "Course"
185 },
186 {
187 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530188 "name": "Program"
manqalab2b23832016-09-03 16:35:06 +0100189 },
190 {
191 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +0530192 "name": "Instructor"
193 },
194 {
195 "type": "doctype",
196 "name": "Room"
Neil Trini Lasradodefdd782016-11-17 18:52:31 +0530197 },
198 {
199 "type": "doctype",
Neil Trini Lasradoc20adb52016-09-05 16:55:54 +0530200 "name": "Student Category"
201 },
202 {
203 "type": "doctype",
Neil Trini Lasradob444d5d2016-11-21 17:04:23 +0530204 "name": "Student Batch Name"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530205 },
206 {
207 "type": "doctype",
Manas Solankie5aa9c52017-11-13 18:56:53 +0530208 "name": "Grading Scale"
209 },
210 {
211 "type": "doctype",
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530212 "name": "Academic Term"
213 },
214 {
215 "type": "doctype",
216 "name": "Academic Year"
Manas Solanki79683d02017-04-05 14:55:06 +0530217 },
218 {
219 "type": "doctype",
220 "name": "School Settings"
Rushabh Mehta20038ad2016-07-21 16:01:59 +0530221 }
222 ]
223 },
224 ]