Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 1 | from __future__ import unicode_literals |
| 2 | from frappe import _ |
| 3 | |
| 4 | def get_data(): |
| 5 | return [ |
| 6 | { |
| 7 | "label": _("Student"), |
| 8 | "items": [ |
| 9 | { |
| 10 | "type": "doctype", |
| 11 | "name": "Student" |
| 12 | }, |
| 13 | { |
| 14 | "type": "doctype", |
| 15 | "name": "Guardian" |
| 16 | }, |
| 17 | { |
| 18 | "type": "doctype", |
| 19 | "name": "Student Log" |
| 20 | }, |
| 21 | { |
| 22 | "type": "doctype", |
| 23 | "name": "Student Group" |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 24 | } |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 25 | ] |
| 26 | }, |
| 27 | { |
| 28 | "label": _("Admission"), |
| 29 | "items": [ |
| 30 | |
| 31 | { |
| 32 | "type": "doctype", |
| 33 | "name": "Student Applicant" |
| 34 | }, |
| 35 | { |
| 36 | "type": "doctype", |
scmmishra | 8c41abc | 2018-10-02 15:41:23 +0530 | [diff] [blame] | 37 | "name": "Web Academy Applicant" |
| 38 | }, |
| 39 | { |
| 40 | "type": "doctype", |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 41 | "name": "Student Admission" |
| 42 | }, |
| 43 | { |
| 44 | "type": "doctype", |
| 45 | "name": "Program Enrollment" |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 46 | } |
| 47 | ] |
| 48 | }, |
| 49 | { |
| 50 | "label": _("Attendance"), |
| 51 | "items": [ |
| 52 | { |
| 53 | "type": "doctype", |
| 54 | "name": "Student Attendance" |
| 55 | }, |
| 56 | { |
| 57 | "type": "doctype", |
| 58 | "name": "Student Leave Application" |
| 59 | }, |
| 60 | { |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 61 | "type": "report", |
| 62 | "is_query_report": True, |
| 63 | "name": "Absent Student Report", |
| 64 | "doctype": "Student Attendance" |
| 65 | }, |
| 66 | { |
| 67 | "type": "report", |
| 68 | "is_query_report": True, |
| 69 | "name": "Student Batch-Wise Attendance", |
| 70 | "doctype": "Student Attendance" |
| 71 | }, |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 72 | ] |
| 73 | }, |
| 74 | { |
Manas Solanki | 37b2aa2 | 2018-02-08 19:00:51 +0530 | [diff] [blame] | 75 | "label": _("Tools"), |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 76 | "items": [ |
| 77 | { |
| 78 | "type": "doctype", |
Manas Solanki | 37b2aa2 | 2018-02-08 19:00:51 +0530 | [diff] [blame] | 79 | "name": "Student Attendance Tool" |
| 80 | }, |
| 81 | { |
| 82 | "type": "doctype", |
| 83 | "name": "Assessment Result Tool" |
| 84 | }, |
| 85 | { |
| 86 | "type": "doctype", |
| 87 | "name": "Student Group Creation Tool" |
| 88 | }, |
| 89 | { |
| 90 | "type": "doctype", |
| 91 | "name": "Program Enrollment Tool" |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 92 | }, |
| 93 | { |
| 94 | "type": "doctype", |
| 95 | "name": "Course Scheduling Tool" |
| 96 | } |
| 97 | ] |
| 98 | }, |
| 99 | { |
| 100 | "label": _("Assessment"), |
| 101 | "items": [ |
| 102 | { |
| 103 | "type": "doctype", |
| 104 | "name": "Assessment Plan" |
| 105 | }, |
| 106 | { |
| 107 | "type": "doctype", |
| 108 | "name": "Assessment Group", |
| 109 | "link": "Tree/Assessment Group", |
| 110 | }, |
| 111 | { |
| 112 | "type": "doctype", |
| 113 | "name": "Assessment Result" |
| 114 | }, |
| 115 | { |
| 116 | "type": "doctype", |
| 117 | "name": "Assessment Criteria" |
Manas Solanki | 37b2aa2 | 2018-02-08 19:00:51 +0530 | [diff] [blame] | 118 | } |
| 119 | ] |
| 120 | }, |
| 121 | { |
| 122 | "label": _("Assessment Reports"), |
| 123 | "items": [ |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 124 | { |
| 125 | "type": "report", |
| 126 | "is_query_report": True, |
| 127 | "name": "Course wise Assessment Report", |
| 128 | "doctype": "Assessment Result" |
| 129 | }, |
| 130 | { |
| 131 | "type": "report", |
| 132 | "is_query_report": True, |
Manas Solanki | 37b2aa2 | 2018-02-08 19:00:51 +0530 | [diff] [blame] | 133 | "name": "Final Assessment Grades", |
| 134 | "doctype": "Assessment Result" |
| 135 | }, |
| 136 | { |
| 137 | "type": "report", |
| 138 | "is_query_report": True, |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 139 | "name": "Assessment Plan Status", |
| 140 | "doctype": "Assessment Plan" |
| 141 | }, |
Manas Solanki | e010ddf | 2018-03-21 17:50:42 +0530 | [diff] [blame] | 142 | { |
| 143 | "type": "doctype", |
| 144 | "name": "Student Report Generation Tool" |
| 145 | } |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 146 | ] |
| 147 | }, |
| 148 | { |
| 149 | "label": _("Fees"), |
| 150 | "items": [ |
| 151 | { |
| 152 | "type": "doctype", |
| 153 | "name": "Fees" |
| 154 | }, |
| 155 | { |
| 156 | "type": "doctype", |
| 157 | "name": "Fee Schedule" |
| 158 | }, |
| 159 | { |
| 160 | "type": "doctype", |
| 161 | "name": "Fee Structure" |
| 162 | }, |
| 163 | { |
| 164 | "type": "doctype", |
| 165 | "name": "Fee Category" |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 166 | } |
| 167 | ] |
| 168 | }, |
| 169 | { |
Manas Solanki | 37b2aa2 | 2018-02-08 19:00:51 +0530 | [diff] [blame] | 170 | "label": _("Schedule"), |
| 171 | "items": [ |
| 172 | { |
| 173 | "type": "doctype", |
| 174 | "name": "Course Schedule", |
| 175 | "route": "List/Course Schedule/Calendar" |
| 176 | }, |
| 177 | { |
| 178 | "type": "doctype", |
| 179 | "name": "Course Scheduling Tool" |
| 180 | } |
| 181 | ] |
| 182 | }, |
| 183 | { |
| 184 | "label": _("Masters"), |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 185 | "items": [ |
| 186 | { |
| 187 | "type": "doctype", |
scmmishra | 8c41abc | 2018-10-02 15:41:23 +0530 | [diff] [blame] | 188 | "name": "Program" |
| 189 | }, |
| 190 | { |
| 191 | "type": "doctype", |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 192 | "name": "Course" |
| 193 | }, |
| 194 | { |
| 195 | "type": "doctype", |
scmmishra | 18baff5 | 2018-10-18 15:43:03 +0530 | [diff] [blame] | 196 | "name": "Article" |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 197 | }, |
| 198 | { |
| 199 | "type": "doctype", |
scmmishra | 18baff5 | 2018-10-18 15:43:03 +0530 | [diff] [blame] | 200 | "name": "Video" |
scmmishra | 5311e38 | 2018-10-15 16:04:25 +0530 | [diff] [blame] | 201 | }, |
| 202 | { |
| 203 | "type": "doctype", |
scmmishra | 18baff5 | 2018-10-18 15:43:03 +0530 | [diff] [blame] | 204 | "name": "Quiz" |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 205 | }, |
| 206 | { |
| 207 | "type": "doctype", |
| 208 | "name": "Room" |
Manas Solanki | 37b2aa2 | 2018-02-08 19:00:51 +0530 | [diff] [blame] | 209 | } |
| 210 | ] |
| 211 | }, |
| 212 | { |
scmmishra | 5311e38 | 2018-10-15 16:04:25 +0530 | [diff] [blame] | 213 | "label": _("LMS Activity"), |
| 214 | "items": [ |
| 215 | { |
| 216 | "type": "doctype", |
| 217 | "name": "Course Enrollment" |
| 218 | }, |
| 219 | { |
| 220 | "type": "doctype", |
| 221 | "name": "Course Activity" |
scmmishra | 3cbb979 | 2018-10-16 13:04:11 +0530 | [diff] [blame] | 222 | }, |
| 223 | { |
| 224 | "type": "doctype", |
| 225 | "name": "Quiz Activity" |
scmmishra | 5311e38 | 2018-10-15 16:04:25 +0530 | [diff] [blame] | 226 | } |
| 227 | ] |
| 228 | }, |
| 229 | { |
Prateeksha Singh | 9d4a183 | 2019-02-11 15:14:50 +0530 | [diff] [blame] | 230 | "label": _("Settings"), |
Manas Solanki | 37b2aa2 | 2018-02-08 19:00:51 +0530 | [diff] [blame] | 231 | "items": [ |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 232 | { |
| 233 | "type": "doctype", |
| 234 | "name": "Student Category" |
| 235 | }, |
| 236 | { |
| 237 | "type": "doctype", |
| 238 | "name": "Student Batch Name" |
| 239 | }, |
| 240 | { |
| 241 | "type": "doctype", |
| 242 | "name": "Grading Scale" |
| 243 | }, |
| 244 | { |
| 245 | "type": "doctype", |
| 246 | "name": "Academic Term" |
| 247 | }, |
| 248 | { |
| 249 | "type": "doctype", |
| 250 | "name": "Academic Year" |
| 251 | }, |
| 252 | { |
| 253 | "type": "doctype", |
| 254 | "name": "Education Settings" |
| 255 | } |
| 256 | ] |
| 257 | }, |
Manas Solanki | 37b2aa2 | 2018-02-08 19:00:51 +0530 | [diff] [blame] | 258 | { |
| 259 | "label": _("Other Reports"), |
| 260 | "items": [ |
| 261 | { |
| 262 | "type": "report", |
| 263 | "is_query_report": True, |
| 264 | "name": "Student and Guardian Contact Details", |
| 265 | "doctype": "Program Enrollment" |
| 266 | }, |
| 267 | { |
| 268 | "type": "report", |
| 269 | "is_query_report": True, |
| 270 | "name": "Student Monthly Attendance Sheet", |
| 271 | "doctype": "Student Attendance" |
| 272 | }, |
| 273 | { |
| 274 | "type": "report", |
| 275 | "name": "Student Fee Collection", |
| 276 | "doctype": "Fees", |
| 277 | "is_query_report": True |
| 278 | } |
| 279 | ] |
| 280 | } |
Manas Solanki | 966f141 | 2017-11-23 15:22:10 +0530 | [diff] [blame] | 281 | ] |