[8057] | 1 | ## $Id: export.py 16186 2020-08-04 07:49:51Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
[7944] | 18 | """Exporters for student related stuff. |
---|
| 19 | """ |
---|
[9937] | 20 | import os |
---|
[7944] | 21 | import grok |
---|
[13156] | 22 | from datetime import datetime, timedelta |
---|
[9937] | 23 | from zope.component import getUtility |
---|
[11757] | 24 | from waeup.kofa.interfaces import ( |
---|
| 25 | IExtFileStore, IFileStoreNameChooser, IKofaUtils) |
---|
[7944] | 26 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[15873] | 27 | from waeup.kofa.university.interfaces import ICertificateCourse, ICourse |
---|
[9843] | 28 | from waeup.kofa.students.catalog import StudentsQuery, CourseTicketsQuery |
---|
[8015] | 29 | from waeup.kofa.students.interfaces import ( |
---|
[8371] | 30 | IStudent, IStudentStudyCourse, IStudentStudyLevel, ICourseTicket, |
---|
[9427] | 31 | IStudentOnlinePayment, ICSVStudentExporter, IBedTicket) |
---|
[9787] | 32 | from waeup.kofa.students.vocabularies import study_levels |
---|
[7944] | 33 | from waeup.kofa.utils.batching import ExporterBase |
---|
[11757] | 34 | from waeup.kofa.utils.helpers import iface_names, to_timezone |
---|
[7944] | 35 | |
---|
[8400] | 36 | |
---|
[9787] | 37 | def get_students(site, stud_filter=StudentsQuery()): |
---|
[8414] | 38 | """Get all students registered in catalog in `site`. |
---|
[7944] | 39 | """ |
---|
[9787] | 40 | return stud_filter.query() |
---|
[8414] | 41 | |
---|
| 42 | def get_studycourses(students): |
---|
| 43 | """Get studycourses of `students`. |
---|
| 44 | """ |
---|
| 45 | return [x.get('studycourse', None) for x in students |
---|
| 46 | if x is not None] |
---|
| 47 | |
---|
[15918] | 48 | def get_levels(students, **kw): |
---|
[8414] | 49 | """Get all studylevels of `students`. |
---|
| 50 | """ |
---|
| 51 | levels = [] |
---|
[15918] | 52 | level_session = kw.get('level_session', None) |
---|
[8414] | 53 | for course in get_studycourses(students): |
---|
| 54 | for level in course.values(): |
---|
[15918] | 55 | if level_session not in ('all', None) and \ |
---|
| 56 | int(level_session) != level.level_session: |
---|
| 57 | continue |
---|
[8414] | 58 | levels.append(level) |
---|
| 59 | return levels |
---|
| 60 | |
---|
[9844] | 61 | def get_tickets(students, **kw): |
---|
| 62 | """Get course tickets of `students`. |
---|
[10017] | 63 | If code is passed through, filter course tickets |
---|
[14984] | 64 | which belong to this course code and meet level=level |
---|
| 65 | and level_session=level_session. |
---|
[15546] | 66 | If not, but ct_level, ct_session and ct_semester |
---|
[14984] | 67 | are passed through, filter course tickets |
---|
[15546] | 68 | which meet level==ct_level, level_session==ct_session |
---|
| 69 | and semester==ct_semester. |
---|
[8414] | 70 | """ |
---|
| 71 | tickets = [] |
---|
[9844] | 72 | code = kw.get('code', None) |
---|
[10017] | 73 | level = kw.get('level', None) |
---|
[14984] | 74 | session = kw.get('session', None) |
---|
| 75 | ct_level = kw.get('ct_level', None) |
---|
| 76 | ct_session = kw.get('ct_session', None) |
---|
[15546] | 77 | ct_semester = kw.get('ct_semester', None) |
---|
[9844] | 78 | if code is None: |
---|
[15918] | 79 | for level_obj in get_levels(students, **kw): |
---|
[10017] | 80 | for ticket in level_obj.values(): |
---|
[14984] | 81 | if ct_level not in ('all', None): |
---|
| 82 | if level_obj.level in (10, 999, None) \ |
---|
| 83 | and int(ct_level) != level_obj.level: |
---|
| 84 | continue |
---|
| 85 | if level_obj.level not in range( |
---|
| 86 | int(ct_level), int(ct_level)+100, 10): |
---|
| 87 | continue |
---|
| 88 | if ct_session not in ('all', None) and \ |
---|
| 89 | int(ct_session) != level_obj.level_session: |
---|
| 90 | continue |
---|
[15546] | 91 | if ct_semester not in ('all', None) and \ |
---|
| 92 | int(ct_semester) != ticket.semester: |
---|
| 93 | continue |
---|
[9844] | 94 | tickets.append(ticket) |
---|
| 95 | else: |
---|
[15918] | 96 | for level_obj in get_levels(students, **kw): |
---|
[10017] | 97 | for ticket in level_obj.values(): |
---|
| 98 | if ticket.code != code: |
---|
| 99 | continue |
---|
[14984] | 100 | if level not in ('all', None): |
---|
[11483] | 101 | if level_obj.level in (10, 999, None) \ |
---|
| 102 | and int(level) != level_obj.level: |
---|
| 103 | continue |
---|
[14984] | 104 | if level_obj.level not in range( |
---|
| 105 | int(level), int(level)+100, 10): |
---|
[11483] | 106 | continue |
---|
[14984] | 107 | if session not in ('all', None) and \ |
---|
| 108 | int(session) != level_obj.level_session: |
---|
[10017] | 109 | continue |
---|
| 110 | tickets.append(ticket) |
---|
[8414] | 111 | return tickets |
---|
| 112 | |
---|
[13894] | 113 | def get_tickets_for_lecturer(students, **kw): |
---|
| 114 | """Get course tickets of `students`. |
---|
| 115 | Filter course tickets which belong to this course code and |
---|
| 116 | which are editable by lecturers. |
---|
| 117 | """ |
---|
| 118 | tickets = [] |
---|
| 119 | code = kw.get('code', None) |
---|
| 120 | level_session = kw.get('session', None) |
---|
| 121 | level = kw.get('level', None) |
---|
[15918] | 122 | for level_obj in get_levels(students, **kw): |
---|
[13894] | 123 | for ticket in level_obj.values(): |
---|
| 124 | if ticket.code != code: |
---|
| 125 | continue |
---|
| 126 | if not ticket.editable_by_lecturer: |
---|
| 127 | continue |
---|
[14984] | 128 | if level not in ('all', None): |
---|
[13894] | 129 | if level_obj.level in (10, 999, None) \ |
---|
| 130 | and int(level) != level_obj.level: |
---|
| 131 | continue |
---|
[14984] | 132 | if level_obj.level not in range(int(level), int(level)+100, 10): |
---|
[13894] | 133 | continue |
---|
[14984] | 134 | if level_session not in ('all', None) and \ |
---|
[13894] | 135 | int(level_session) != level_obj.level_session: |
---|
| 136 | continue |
---|
| 137 | tickets.append(ticket) |
---|
| 138 | return tickets |
---|
| 139 | |
---|
[15873] | 140 | def get_outstanding(students, **kw): |
---|
| 141 | """Get students with outstanding certificate courses. |
---|
| 142 | """ |
---|
| 143 | students_wo = [] |
---|
| 144 | for student in students: |
---|
| 145 | certificate = getattr( |
---|
| 146 | student.get('studycourse', None), 'certificate', None) |
---|
| 147 | if certificate: |
---|
| 148 | allticketcodes = [] |
---|
| 149 | failedticketcodes = '' # taken but failed |
---|
| 150 | nottakenticketcodes = '' # registered but not taken |
---|
| 151 | missedticketcodes = '' # not registered |
---|
| 152 | for level in student['studycourse'].values(): |
---|
| 153 | failedticketcodes += level.passed_params[4] |
---|
| 154 | nottakenticketcodes += level.passed_params[5] |
---|
| 155 | for ticket in level.values(): |
---|
| 156 | allticketcodes.append(ticket.code) |
---|
| 157 | for certcourse in certificate.values(): |
---|
| 158 | if certcourse.getCourseCode() not in allticketcodes: |
---|
| 159 | missedticketcodes += '%s ' % certcourse.__name__ |
---|
| 160 | student_wo = (student, missedticketcodes, |
---|
| 161 | failedticketcodes, nottakenticketcodes) |
---|
| 162 | students_wo.append(student_wo) |
---|
| 163 | return students_wo |
---|
| 164 | |
---|
[14761] | 165 | def get_payments(students, p_states=None, **kw): |
---|
[15924] | 166 | """Get all payment tickets of `students` within given payment_date period. |
---|
[10296] | 167 | """ |
---|
[11730] | 168 | date_format = '%d/%m/%Y' |
---|
[10296] | 169 | payments = [] |
---|
[15043] | 170 | p_start = kw.get('payments_start') |
---|
| 171 | p_end = kw.get('payments_end') |
---|
[15042] | 172 | paycat = kw.get('paycat') |
---|
[15055] | 173 | paysession = kw.get('paysession') |
---|
[15042] | 174 | for student in students: |
---|
| 175 | for payment in student.get('payments', {}).values(): |
---|
[15043] | 176 | if p_start and p_end: |
---|
[15042] | 177 | if not payment.payment_date: |
---|
| 178 | continue |
---|
[15043] | 179 | payments_start = datetime.strptime(p_start, date_format) |
---|
| 180 | payments_end = datetime.strptime(p_end, date_format) |
---|
[15042] | 181 | tz = getUtility(IKofaUtils).tzinfo |
---|
| 182 | payments_start = tz.localize(payments_start) |
---|
| 183 | payments_end = tz.localize(payments_end) + timedelta(days=1) |
---|
| 184 | payment_date = to_timezone(payment.payment_date, tz) |
---|
| 185 | if payment_date < payments_start or payment_date > payments_end: |
---|
| 186 | continue |
---|
| 187 | if p_states and not payment.p_state in p_states: |
---|
| 188 | continue |
---|
| 189 | if paycat not in ('all', None) and payment.p_category != paycat: |
---|
| 190 | continue |
---|
[15297] | 191 | if paysession not in ('all', None) \ |
---|
| 192 | and payment.p_session != int(paysession): |
---|
[15055] | 193 | continue |
---|
[15042] | 194 | payments.append(payment) |
---|
[10296] | 195 | return payments |
---|
| 196 | |
---|
[9427] | 197 | def get_bedtickets(students): |
---|
[15924] | 198 | """Get all bed tickets of `students`. |
---|
[9427] | 199 | """ |
---|
| 200 | tickets = [] |
---|
| 201 | for student in students: |
---|
| 202 | for ticket in student.get('accommodation', {}).values(): |
---|
| 203 | tickets.append(ticket) |
---|
| 204 | return tickets |
---|
[8414] | 205 | |
---|
| 206 | class StudentExporterBase(ExporterBase): |
---|
| 207 | """Exporter for students or related objects. |
---|
| 208 | This is a baseclass. |
---|
| 209 | """ |
---|
| 210 | grok.baseclass() |
---|
[8411] | 211 | grok.implements(ICSVStudentExporter) |
---|
| 212 | grok.provides(ICSVStudentExporter) |
---|
[8414] | 213 | |
---|
[9844] | 214 | def filter_func(self, x, **kw): |
---|
[9802] | 215 | return x |
---|
[9797] | 216 | |
---|
[9801] | 217 | def get_filtered(self, site, **kw): |
---|
[9843] | 218 | """Get students from a catalog filtered by keywords. |
---|
| 219 | students_catalog is the default catalog. The keys must be valid |
---|
[9933] | 220 | catalog index names. |
---|
[9843] | 221 | Returns a simple empty list, a list with `Student` |
---|
| 222 | objects or a catalog result set with `Student` |
---|
[9801] | 223 | objects. |
---|
| 224 | |
---|
| 225 | .. seealso:: `waeup.kofa.students.catalog.StudentsCatalog` |
---|
| 226 | |
---|
| 227 | """ |
---|
[9843] | 228 | # Pass only given keywords to create FilteredCatalogQuery objects. |
---|
| 229 | # This way we avoid |
---|
[9801] | 230 | # trouble with `None` value ambivalences and queries are also |
---|
| 231 | # faster (normally less indexes to ask). Drawback is, that |
---|
| 232 | # developers must look into catalog to see what keywords are |
---|
| 233 | # valid. |
---|
[9845] | 234 | if kw.get('catalog', None) == 'coursetickets': |
---|
[9843] | 235 | coursetickets = CourseTicketsQuery(**kw).query() |
---|
| 236 | students = [] |
---|
| 237 | for ticket in coursetickets: |
---|
| 238 | students.append(ticket.student) |
---|
| 239 | return list(set(students)) |
---|
[15042] | 240 | # Payments can be filtered by payment date and payment category. |
---|
| 241 | # These parameters are not keys of the catalog and must thus be |
---|
| 242 | # removed from kw. |
---|
[11730] | 243 | try: |
---|
| 244 | del kw['payments_start'] |
---|
| 245 | del kw['payments_end'] |
---|
[15042] | 246 | del kw['paycat'] |
---|
[15055] | 247 | del kw['paysession'] |
---|
[11730] | 248 | except KeyError: |
---|
| 249 | pass |
---|
[15055] | 250 | # Coursetickets can be filtered by level and session. |
---|
[15042] | 251 | # These parameters are not keys of the catalog and must thus be |
---|
| 252 | # removed from kw. |
---|
[14984] | 253 | try: |
---|
| 254 | del kw['ct_level'] |
---|
| 255 | del kw['ct_session'] |
---|
[15546] | 256 | del kw['ct_semester'] |
---|
[14984] | 257 | except KeyError: |
---|
| 258 | pass |
---|
[15918] | 259 | # Studylevels can be filtered by level_session. |
---|
| 260 | # This parameter is not a key of the catalog and must thus be |
---|
| 261 | # removed from kw. |
---|
| 262 | try: |
---|
| 263 | del kw['level_session'] |
---|
| 264 | except KeyError: |
---|
| 265 | pass |
---|
[9801] | 266 | query = StudentsQuery(**kw) |
---|
[9797] | 267 | return query.query() |
---|
| 268 | |
---|
[12518] | 269 | def get_selected(self, site, selected): |
---|
| 270 | """Get set of selected students. |
---|
| 271 | Returns a simple empty list or a list with `Student` |
---|
| 272 | objects. |
---|
| 273 | """ |
---|
| 274 | students = [] |
---|
| 275 | students_container = site.get('students', {}) |
---|
| 276 | for id in selected: |
---|
| 277 | student = students_container.get(id, None) |
---|
[14443] | 278 | if student is None: |
---|
| 279 | # try matric number |
---|
| 280 | result = list(StudentsQuery(matric_number=id).query()) |
---|
| 281 | if result: |
---|
| 282 | student = result[0] |
---|
| 283 | else: |
---|
| 284 | continue |
---|
| 285 | students.append(student) |
---|
[12518] | 286 | return students |
---|
| 287 | |
---|
[8414] | 288 | def export(self, values, filepath=None): |
---|
| 289 | """Export `values`, an iterable, as CSV file. |
---|
| 290 | If `filepath` is ``None``, a raw string with CSV data is returned. |
---|
| 291 | """ |
---|
| 292 | writer, outfile = self.get_csv_writer(filepath) |
---|
| 293 | for value in values: |
---|
| 294 | self.write_item(value, writer) |
---|
| 295 | return self.close_outfile(filepath, outfile) |
---|
| 296 | |
---|
[9797] | 297 | def export_all(self, site, filepath=None): |
---|
| 298 | """Export students into filepath as CSV data. |
---|
| 299 | If `filepath` is ``None``, a raw string with CSV data is returned. |
---|
[9763] | 300 | """ |
---|
[9802] | 301 | return self.export(self.filter_func(get_students(site)), filepath) |
---|
[8414] | 302 | |
---|
[9797] | 303 | def export_student(self, student, filepath=None): |
---|
| 304 | return self.export(self.filter_func([student]), filepath=filepath) |
---|
[9734] | 305 | |
---|
[9802] | 306 | def export_filtered(self, site, filepath=None, **kw): |
---|
| 307 | """Export items denoted by `kw`. |
---|
| 308 | If `filepath` is ``None``, a raw string with CSV data should |
---|
| 309 | be returned. |
---|
| 310 | """ |
---|
| 311 | data = self.get_filtered(site, **kw) |
---|
[9844] | 312 | return self.export(self.filter_func(data, **kw), filepath=filepath) |
---|
[9802] | 313 | |
---|
[12518] | 314 | def export_selected(self,site, filepath=None, **kw): |
---|
| 315 | """Export data for selected set of students. |
---|
| 316 | """ |
---|
| 317 | selected = kw.get('selected', []) |
---|
| 318 | data = self.get_selected(site, selected) |
---|
| 319 | return self.export(self.filter_func(data, **kw), filepath=filepath) |
---|
[9802] | 320 | |
---|
[12518] | 321 | |
---|
[12079] | 322 | class StudentExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[12861] | 323 | """The Student Exporter first filters the set of students by searching the |
---|
| 324 | students catalog. Then it exports student base data of this set of students. |
---|
[8414] | 325 | """ |
---|
[7944] | 326 | grok.name('students') |
---|
| 327 | |
---|
[9936] | 328 | fields = tuple(sorted(iface_names(IStudent))) + ( |
---|
[9253] | 329 | 'password', 'state', 'history', 'certcode', 'is_postgrad', |
---|
[16186] | 330 | 'current_level', 'current_session', 'entry_session') |
---|
[15920] | 331 | title = _(u'Students (Data Backup)') |
---|
[7944] | 332 | |
---|
[8493] | 333 | def mangle_value(self, value, name, context=None): |
---|
[12861] | 334 | """The mangler prepares the history messages and adds a hash symbol at |
---|
| 335 | the end of the phone number to avoid annoying automatic number |
---|
| 336 | transformation by Excel or Calc.""" |
---|
[8493] | 337 | if name == 'history': |
---|
| 338 | value = value.messages |
---|
[14957] | 339 | if 'phone' in name and value is not None: |
---|
[8971] | 340 | # Append hash '#' to phone numbers to circumvent |
---|
| 341 | # unwanted excel automatic |
---|
[8947] | 342 | value = str('%s#' % value) |
---|
[8493] | 343 | return super( |
---|
[12079] | 344 | StudentExporter, self).mangle_value( |
---|
[8493] | 345 | value, name, context=context) |
---|
| 346 | |
---|
[15966] | 347 | class TrimmedDataExporter(grok.GlobalUtility, StudentExporterBase): |
---|
| 348 | """The Student Trimmed Data Exporter first filters the set of students |
---|
| 349 | by searching the students catalog. Then it exports a trimmed data set |
---|
| 350 | of this set of students. |
---|
| 351 | """ |
---|
| 352 | grok.name('trimmed') |
---|
[7944] | 353 | |
---|
[15966] | 354 | fields = ( |
---|
| 355 | 'student_id', |
---|
| 356 | 'matric_number', |
---|
| 357 | 'reg_number', |
---|
| 358 | 'firstname', |
---|
| 359 | 'middlename', |
---|
| 360 | 'lastname', |
---|
| 361 | 'sex', |
---|
| 362 | 'email', |
---|
| 363 | 'phone', |
---|
| 364 | 'nationality', |
---|
| 365 | 'date_of_birth', |
---|
| 366 | 'state', |
---|
| 367 | 'current_mode', |
---|
| 368 | 'certcode', |
---|
| 369 | 'faccode', |
---|
| 370 | 'depcode', |
---|
| 371 | 'current_level', |
---|
| 372 | 'current_session', |
---|
[16186] | 373 | 'current_verdict', |
---|
| 374 | 'entry_session') |
---|
[15966] | 375 | title = _(u'Students (Trimmed Data)') |
---|
| 376 | |
---|
| 377 | def mangle_value(self, value, name, context=None): |
---|
| 378 | """The mangler prepares the history messages and adds a hash symbol at |
---|
| 379 | the end of the phone number to avoid annoying automatic number |
---|
| 380 | transformation by Excel or Calc.""" |
---|
| 381 | if 'phone' in name and value is not None: |
---|
| 382 | # Append hash '#' to phone numbers to circumvent |
---|
| 383 | # unwanted excel automatic |
---|
| 384 | value = str('%s#' % value) |
---|
| 385 | return super( |
---|
| 386 | TrimmedDataExporter, self).mangle_value( |
---|
| 387 | value, name, context=context) |
---|
| 388 | |
---|
[8414] | 389 | class StudentStudyCourseExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[12861] | 390 | """The Student Study Course Exporter first filters the set of students |
---|
| 391 | by searching the students catalog. Then it exports the data of the current |
---|
| 392 | study course container of each student from this set. It does |
---|
| 393 | not export their content. |
---|
[7994] | 394 | """ |
---|
| 395 | grok.name('studentstudycourses') |
---|
| 396 | |
---|
[8493] | 397 | fields = tuple(sorted(iface_names(IStudentStudyCourse))) + ('student_id',) |
---|
[15920] | 398 | title = _(u'Student Study Courses (Data Backup)') |
---|
[7994] | 399 | |
---|
[9844] | 400 | def filter_func(self, x, **kw): |
---|
[9797] | 401 | return get_studycourses(x) |
---|
| 402 | |
---|
[7994] | 403 | def mangle_value(self, value, name, context=None): |
---|
[12861] | 404 | """The mangler determines the certificate code and the student id. |
---|
[7994] | 405 | """ |
---|
| 406 | if name == 'certificate' and value is not None: |
---|
| 407 | # XXX: hopefully cert codes are unique site-wide |
---|
| 408 | value = value.code |
---|
[8493] | 409 | if name == 'student_id' and context is not None: |
---|
[8736] | 410 | student = context.student |
---|
[8493] | 411 | value = getattr(student, name, None) |
---|
[7994] | 412 | return super( |
---|
| 413 | StudentStudyCourseExporter, self).mangle_value( |
---|
| 414 | value, name, context=context) |
---|
| 415 | |
---|
| 416 | |
---|
[8414] | 417 | class StudentStudyLevelExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[12861] | 418 | """The Student Study Level Exporter first filters the set of students |
---|
| 419 | by searching the students catalog. Then it exports the data of the student's |
---|
[12862] | 420 | study level container data but not their content (course tickets). |
---|
[12861] | 421 | The exporter iterates over all objects in the students' ``studycourse`` |
---|
| 422 | containers. |
---|
[8015] | 423 | """ |
---|
| 424 | grok.name('studentstudylevels') |
---|
| 425 | |
---|
[8493] | 426 | fields = tuple(sorted(iface_names( |
---|
[12873] | 427 | IStudentStudyLevel))) + ( |
---|
[9253] | 428 | 'student_id', 'number_of_tickets','certcode') |
---|
[15920] | 429 | title = _(u'Student Study Levels (Data Backup)') |
---|
[8015] | 430 | |
---|
[9844] | 431 | def filter_func(self, x, **kw): |
---|
[15918] | 432 | return get_levels(x, **kw) |
---|
[9802] | 433 | |
---|
[8015] | 434 | def mangle_value(self, value, name, context=None): |
---|
[12861] | 435 | """The mangler determines the student id, nothing else. |
---|
[8015] | 436 | """ |
---|
[8493] | 437 | if name == 'student_id' and context is not None: |
---|
[8736] | 438 | student = context.student |
---|
[8493] | 439 | value = getattr(student, name, None) |
---|
[8015] | 440 | return super( |
---|
| 441 | StudentStudyLevelExporter, self).mangle_value( |
---|
| 442 | value, name, context=context) |
---|
| 443 | |
---|
[8414] | 444 | class CourseTicketExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[13144] | 445 | """The Course Ticket Exporter exports course tickets. Usually, |
---|
[12861] | 446 | the exporter first filters the set of students by searching the |
---|
| 447 | students catalog. Then it collects and iterates over all ``studylevel`` |
---|
| 448 | containers of the filtered student set and finally |
---|
| 449 | iterates over all items inside these containers. |
---|
| 450 | |
---|
| 451 | If the course code is passed through, the exporter uses a different |
---|
| 452 | catalog. It searches for students in the course tickets catalog and |
---|
| 453 | exports those course tickets which belong to the given course code and |
---|
[13263] | 454 | also meet level and session passed through at the same time. |
---|
[12862] | 455 | This happens if the exporter is called at course level in the academic |
---|
[12861] | 456 | section. |
---|
[8342] | 457 | """ |
---|
| 458 | grok.name('coursetickets') |
---|
| 459 | |
---|
[8493] | 460 | fields = tuple(sorted(iface_names(ICourseTicket) + |
---|
[11484] | 461 | ['level', 'code', 'level_session'])) + ('student_id', |
---|
| 462 | 'certcode', 'display_fullname') |
---|
[15920] | 463 | title = _(u'Course Tickets (Data Backup)') |
---|
[8342] | 464 | |
---|
[9844] | 465 | def filter_func(self, x, **kw): |
---|
| 466 | return get_tickets(x, **kw) |
---|
[9802] | 467 | |
---|
[8342] | 468 | def mangle_value(self, value, name, context=None): |
---|
[12861] | 469 | """The mangler determines the student's id and fullname. |
---|
[8342] | 470 | """ |
---|
| 471 | if context is not None: |
---|
[8736] | 472 | student = context.student |
---|
[11484] | 473 | if name in ('student_id', 'display_fullname') and student is not None: |
---|
[8342] | 474 | value = getattr(student, name, None) |
---|
| 475 | return super( |
---|
| 476 | CourseTicketExporter, self).mangle_value( |
---|
| 477 | value, name, context=context) |
---|
| 478 | |
---|
[15924] | 479 | class StudentPaymentExporter(grok.GlobalUtility, StudentExporterBase): |
---|
| 480 | """The Student Payment Exporter first filters the set of students |
---|
| 481 | by searching the students catalog. Then it exports student payment |
---|
| 482 | tickets by iterating over the items of the student's ``payments`` |
---|
| 483 | container. If the payment period is given, only tickets, which were |
---|
| 484 | paid in payment period, are considered for export. |
---|
| 485 | """ |
---|
| 486 | grok.name('studentpayments') |
---|
| 487 | |
---|
| 488 | fields = tuple( |
---|
| 489 | sorted(iface_names( |
---|
| 490 | IStudentOnlinePayment, exclude_attribs=False, |
---|
| 491 | omit=['display_item', 'certificate', 'student']))) + ( |
---|
| 492 | 'student_id','state','current_session') |
---|
| 493 | title = _(u'Student Payments (Data Backup)') |
---|
| 494 | |
---|
| 495 | def filter_func(self, x, **kw): |
---|
| 496 | return get_payments(x, **kw) |
---|
| 497 | |
---|
| 498 | def mangle_value(self, value, name, context=None): |
---|
| 499 | """The mangler determines the student's id, registration |
---|
| 500 | state and current session. |
---|
| 501 | """ |
---|
| 502 | if context is not None: |
---|
| 503 | student = context.student |
---|
| 504 | if name in ['student_id','state', |
---|
| 505 | 'current_session'] and student is not None: |
---|
| 506 | value = getattr(student, name, None) |
---|
| 507 | return super( |
---|
| 508 | StudentPaymentExporter, self).mangle_value( |
---|
| 509 | value, name, context=context) |
---|
| 510 | |
---|
[15979] | 511 | class StudentTrimmedPaymentExporter(grok.GlobalUtility, StudentExporterBase): |
---|
| 512 | """The Student Trimmed Payment Exporter is a slightly customized version |
---|
| 513 | of the StudentPaymentExporter requested by Uniben. |
---|
| 514 | """ |
---|
| 515 | grok.name('trimmedpayments') |
---|
| 516 | |
---|
| 517 | fields = tuple( |
---|
| 518 | sorted(iface_names( |
---|
| 519 | IStudentOnlinePayment, exclude_attribs=False, |
---|
| 520 | omit=['display_item', 'certificate', 'student', 'ac']))) + ( |
---|
| 521 | 'student_id','faccode', 'depcode', 'state','current_session') |
---|
| 522 | title = _(u'Student Payments (Sorted Data)') |
---|
| 523 | |
---|
| 524 | def filter_func(self, x, **kw): |
---|
| 525 | payments = get_payments(x, **kw) |
---|
| 526 | return sorted([payment for payment in payments], |
---|
[15996] | 527 | key=lambda payment: str(payment.p_category) + str(payment.student.faccode) |
---|
[15979] | 528 | + str(payment.student.depcode) + str(payment.p_item)) |
---|
| 529 | |
---|
| 530 | def mangle_value(self, value, name, context=None): |
---|
| 531 | """The mangler determines the student's id, registration |
---|
| 532 | state and current session. |
---|
| 533 | """ |
---|
| 534 | if context is not None: |
---|
| 535 | student = context.student |
---|
| 536 | if name in ['student_id','state', 'faccode', 'depcode', |
---|
| 537 | 'current_session'] and student is not None: |
---|
| 538 | value = getattr(student, name, None) |
---|
| 539 | return super( |
---|
| 540 | StudentTrimmedPaymentExporter, self).mangle_value( |
---|
| 541 | value, name, context=context) |
---|
| 542 | |
---|
[13894] | 543 | class DataForLecturerExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[15049] | 544 | """The Data for Lecturer Exporter searches for students in the course |
---|
| 545 | tickets catalog and exports those course tickets which belong to the |
---|
| 546 | given course code, meet level and session passed through at the |
---|
| 547 | same time, and which are editable by lecturers. This exporter can only |
---|
| 548 | be called at course level in the academic section. |
---|
[13766] | 549 | """ |
---|
| 550 | grok.name('lecturer') |
---|
[8342] | 551 | |
---|
[13894] | 552 | fields = ('matric_number', 'student_id', 'display_fullname', |
---|
[13766] | 553 | 'level', 'code', 'level_session', 'score') |
---|
| 554 | |
---|
| 555 | title = _(u'Data for Lecturer') |
---|
| 556 | |
---|
[13894] | 557 | def filter_func(self, x, **kw): |
---|
[16006] | 558 | tickets = get_tickets_for_lecturer(x, **kw) |
---|
| 559 | return sorted([ticket for ticket in tickets], |
---|
| 560 | key=lambda ticket: str(ticket.fcode) + str(ticket.dcode) |
---|
| 561 | + str(ticket.student.matric_number)) |
---|
[13894] | 562 | |
---|
[13766] | 563 | def mangle_value(self, value, name, context=None): |
---|
| 564 | """The mangler determines the student's id and fullname. |
---|
| 565 | """ |
---|
| 566 | if context is not None: |
---|
| 567 | student = context.student |
---|
[13885] | 568 | if name in ('matric_number', |
---|
| 569 | 'reg_number', |
---|
| 570 | 'student_id', |
---|
| 571 | 'display_fullname',) and student is not None: |
---|
[13766] | 572 | value = getattr(student, name, None) |
---|
| 573 | return super( |
---|
[13894] | 574 | DataForLecturerExporter, self).mangle_value( |
---|
[13766] | 575 | value, name, context=context) |
---|
| 576 | |
---|
[15924] | 577 | class OutstandingCoursesExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[15873] | 578 | """The Student Outstanding Courses Exporter first filters the set of |
---|
| 579 | students by searching the students catalog. Then it exports students with |
---|
| 580 | lists of outstanding courses, i.e. courses which the student has |
---|
| 581 | missed (not registered at all), failed (registered but not passed) |
---|
| 582 | or nottaken (registered but not taken). |
---|
| 583 | """ |
---|
[15920] | 584 | grok.name('outstandingcourses') |
---|
[15873] | 585 | |
---|
[15963] | 586 | fields = ('student_id', 'matric_number', 'certcode', 'display_fullname', |
---|
| 587 | 'missed', 'failed', 'nottaken') |
---|
[15920] | 588 | title = _(u'Outstanding Courses') |
---|
[15873] | 589 | |
---|
| 590 | def filter_func(self, x, **kw): |
---|
| 591 | return get_outstanding(x, **kw) |
---|
| 592 | |
---|
| 593 | def mangle_value(self, value, name, context=None): |
---|
| 594 | """The mangler determines the student's id, fullname and certcode, |
---|
| 595 | and it collects the lists of outstanding courses. |
---|
| 596 | """ |
---|
| 597 | if context is not None: |
---|
[15963] | 598 | if name in ('student_id', 'matric_number', |
---|
| 599 | 'display_fullname', 'certcode'): |
---|
[15873] | 600 | value = getattr(context[0], name, None) |
---|
| 601 | elif name == 'missed': |
---|
| 602 | value = context[1] |
---|
| 603 | elif name == 'failed': |
---|
| 604 | value = context[2] |
---|
| 605 | elif name == 'nottaken': |
---|
| 606 | value = context[3] |
---|
| 607 | return super( |
---|
[15924] | 608 | OutstandingCoursesExporter, self).mangle_value( |
---|
[15873] | 609 | value, name, context=context) |
---|
| 610 | |
---|
[15924] | 611 | class UnpaidPaymentsExporter(StudentPaymentExporter): |
---|
| 612 | """The Unpaid Payments Exporter works just like the |
---|
| 613 | Student Payment (singular intended) Exporter but it exports only |
---|
| 614 | unpaid tickets. This exporter is designed for finding and finally |
---|
| 615 | purging outdated payment tickets. |
---|
[8371] | 616 | """ |
---|
[15920] | 617 | grok.name('unpaidpayments') |
---|
[12971] | 618 | |
---|
[15920] | 619 | title = _(u'Unpaid Payment Tickets') |
---|
[12971] | 620 | |
---|
| 621 | def filter_func(self, x, **kw): |
---|
[14761] | 622 | return get_payments(x, p_states=('unpaid',) , **kw) |
---|
[12971] | 623 | |
---|
[12865] | 624 | class DataForBursaryExporter(StudentPaymentExporter): |
---|
[15278] | 625 | """The Data for Bursary Exporter works just like the Student Payment |
---|
| 626 | Exporter but it exports much more information about the student. It combines |
---|
[12862] | 627 | payment and student data in one table in order to spare postprocessing of |
---|
| 628 | two seperate export files. The exporter is primarily used by bursary |
---|
[14761] | 629 | officers who have exclusively access to this exporter. The exporter |
---|
[15792] | 630 | exports ``paid``, ``waived`` and ``scholarship`` payment tickets. |
---|
[10233] | 631 | """ |
---|
| 632 | grok.name('bursary') |
---|
| 633 | |
---|
[10296] | 634 | def filter_func(self, x, **kw): |
---|
[15792] | 635 | return get_payments(x, p_states=('paid', 'waived', 'scholarship'), **kw) |
---|
[10296] | 636 | |
---|
[10233] | 637 | fields = tuple( |
---|
| 638 | sorted(iface_names( |
---|
| 639 | IStudentOnlinePayment, exclude_attribs=False, |
---|
[13871] | 640 | omit=['display_item', 'certificate', 'student']))) + ( |
---|
[11702] | 641 | 'student_id','matric_number','reg_number', |
---|
[10236] | 642 | 'firstname', 'middlename', 'lastname', |
---|
| 643 | 'state','current_session', |
---|
| 644 | 'entry_session', 'entry_mode', |
---|
[13943] | 645 | 'faccode', 'depcode','certcode') |
---|
[10233] | 646 | title = _(u'Payment Data for Bursary') |
---|
| 647 | |
---|
| 648 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 649 | """The mangler fetches the student data. |
---|
[10233] | 650 | """ |
---|
| 651 | if context is not None: |
---|
| 652 | student = context.student |
---|
[10236] | 653 | if name in [ |
---|
[11702] | 654 | 'student_id','matric_number', 'reg_number', |
---|
[10236] | 655 | 'firstname', 'middlename', 'lastname', |
---|
[11702] | 656 | 'state', 'current_session', |
---|
[10236] | 657 | 'entry_session', 'entry_mode', |
---|
[11702] | 658 | 'faccode', 'depcode', 'certcode'] and student is not None: |
---|
[10233] | 659 | value = getattr(student, name, None) |
---|
| 660 | return super( |
---|
[12865] | 661 | StudentPaymentExporter, self).mangle_value( |
---|
[10233] | 662 | value, name, context=context) |
---|
| 663 | |
---|
[15277] | 664 | class AccommodationPaymentsExporter(DataForBursaryExporter): |
---|
[15278] | 665 | """The Accommodation Payments Exporter works like the Data for Bursary |
---|
[15792] | 666 | Exporter above. The exporter exports ``paid``, ``waived`` and ``scholarship`` |
---|
| 667 | payment tickets with category ``bed_allocation`` or ``hostel_maintenance``. |
---|
[15278] | 668 | The exporter is primarily used by accommodation officers who have |
---|
| 669 | exclusively access to this exporter. |
---|
[15277] | 670 | """ |
---|
| 671 | grok.name('accommodationpayments') |
---|
| 672 | |
---|
| 673 | def filter_func(self, x, **kw): |
---|
| 674 | kw['paycat'] = 'bed_allocation' |
---|
[15792] | 675 | payments = get_payments(x, p_states=( |
---|
| 676 | 'paid', 'waived', 'scholarship'), **kw) |
---|
[15277] | 677 | kw['paycat'] = 'hostel_maintenance' |
---|
[15792] | 678 | payments += get_payments(x, p_states=( |
---|
| 679 | 'paid', 'waived', 'scholarship'), **kw) |
---|
[15277] | 680 | return payments |
---|
| 681 | |
---|
| 682 | title = _(u'Accommodation Payments') |
---|
| 683 | |
---|
[12865] | 684 | class BedTicketExporter(grok.GlobalUtility, StudentExporterBase): |
---|
| 685 | """The Bed Ticket Exporter first filters the set of students |
---|
[12862] | 686 | by searching the students catalog. Then it exports bed |
---|
| 687 | tickets by iterating over the items of the student's ``accommodation`` |
---|
| 688 | container. |
---|
[9427] | 689 | """ |
---|
| 690 | grok.name('bedtickets') |
---|
| 691 | |
---|
| 692 | fields = tuple( |
---|
| 693 | sorted(iface_names( |
---|
[9984] | 694 | IBedTicket, exclude_attribs=False, |
---|
[13314] | 695 | omit=['display_coordinates', 'maint_payment_made']))) + ( |
---|
[9984] | 696 | 'student_id', 'actual_bed_type') |
---|
[15920] | 697 | title = _(u'Bed Tickets (Data Backup)') |
---|
[9427] | 698 | |
---|
[9844] | 699 | def filter_func(self, x, **kw): |
---|
[9802] | 700 | return get_bedtickets(x) |
---|
| 701 | |
---|
[9427] | 702 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 703 | """The mangler determines the student id and the type of the bed |
---|
| 704 | which has been booked in the ticket. |
---|
[9427] | 705 | """ |
---|
| 706 | if context is not None: |
---|
| 707 | student = context.student |
---|
| 708 | if name in ['student_id'] and student is not None: |
---|
| 709 | value = getattr(student, name, None) |
---|
| 710 | if name == 'bed' and value is not None: |
---|
| 711 | value = getattr(value, 'bed_id', None) |
---|
| 712 | if name == 'actual_bed_type': |
---|
[14395] | 713 | value = getattr(getattr(context, 'bed', None), 'bed_type', None) |
---|
[9427] | 714 | return super( |
---|
[12865] | 715 | BedTicketExporter, self).mangle_value( |
---|
[9427] | 716 | value, name, context=context) |
---|
| 717 | |
---|
[15047] | 718 | class SchoolFeePaymentsOverviewExporter(StudentExporter): |
---|
| 719 | """The School Fee Payments Overview Exporter first filters the set of students |
---|
[12862] | 720 | by searching the students catalog. Then it exports some student base data |
---|
| 721 | together with the total school fee amount paid in each year over a |
---|
| 722 | predefined year range (current year - 9, ... , current year + 1). |
---|
[9574] | 723 | """ |
---|
[15047] | 724 | grok.name('sfpaymentsoverview') |
---|
[9574] | 725 | |
---|
| 726 | curr_year = datetime.now().year |
---|
[14596] | 727 | year_range = range(curr_year - 11, curr_year + 1) |
---|
[9574] | 728 | year_range_tuple = tuple([str(year) for year in year_range]) |
---|
[9983] | 729 | fields = ('student_id', 'matric_number', 'display_fullname', |
---|
[9574] | 730 | 'state', 'certcode', 'faccode', 'depcode', 'is_postgrad', |
---|
[13641] | 731 | 'current_level', 'current_session', 'current_mode', |
---|
| 732 | 'entry_session', 'reg_number' |
---|
[9574] | 733 | ) + year_range_tuple |
---|
[15920] | 734 | title = _(u'School Fee Payments Overview') |
---|
[9574] | 735 | |
---|
| 736 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 737 | """The mangler summarizes the school fee amounts made per year. It |
---|
| 738 | iterates over all paid school fee payment tickets and |
---|
| 739 | adds together the amounts paid in a year. Waived payments |
---|
[15792] | 740 | are marked ``waived`` and scholarship payments marked `scholarship`. |
---|
[12862] | 741 | """ |
---|
[9574] | 742 | if name in self.year_range_tuple and context is not None: |
---|
[11661] | 743 | value = 0 |
---|
[9574] | 744 | for ticket in context['payments'].values(): |
---|
[12568] | 745 | if ticket.p_category == 'schoolfee' and \ |
---|
[9574] | 746 | ticket.p_session == int(name): |
---|
[12568] | 747 | if ticket.p_state == 'waived': |
---|
| 748 | value = 'waived' |
---|
| 749 | break |
---|
[15792] | 750 | if ticket.p_state == 'scholarship': |
---|
| 751 | value = 'scholarship' |
---|
| 752 | break |
---|
[12568] | 753 | if ticket.p_state == 'paid': |
---|
| 754 | try: |
---|
| 755 | value += ticket.amount_auth |
---|
| 756 | except TypeError: |
---|
| 757 | pass |
---|
[11661] | 758 | if value == 0: |
---|
| 759 | value = '' |
---|
[14367] | 760 | elif isinstance(value, float): |
---|
| 761 | value = round(value, 2) |
---|
[9574] | 762 | return super( |
---|
[12079] | 763 | StudentExporter, self).mangle_value( |
---|
[9734] | 764 | value, name, context=context) |
---|
[9744] | 765 | |
---|
[15051] | 766 | class SessionPaymentsOverviewExporter(StudentExporter): |
---|
| 767 | """The Session Payments Overview Exporter first filters the set of students |
---|
| 768 | by searching the students catalog. Then it exports some student base data |
---|
[15060] | 769 | together with the total amount paid in predefined payment categories |
---|
| 770 | over the previous three session (referring to current academic session). |
---|
| 771 | Sample output: |
---|
| 772 | |
---|
| 773 | header: ``...schoolfee13,schoolfee14,schoolfee15,gown13,gown14,gown15...`` |
---|
| 774 | |
---|
| 775 | data: ``...2000.0,,3000.0,,,1000.0,...`` |
---|
| 776 | |
---|
[15062] | 777 | This csv data string means that the student paid 2000.0 school fee in 2013 |
---|
| 778 | and 3000.0 in 2015. S/He furthermore paid 1000.0 for gown rental in 2015. |
---|
[15051] | 779 | """ |
---|
| 780 | grok.name('sessionpaymentsoverview') |
---|
| 781 | |
---|
| 782 | paycats = ('schoolfee', 'clearance', 'gown', 'transcript') |
---|
[15060] | 783 | regular_fields = ('student_id', 'matric_number', 'display_fullname', |
---|
[15051] | 784 | 'state', 'certcode', 'faccode', 'depcode', 'is_postgrad', |
---|
| 785 | 'current_level', 'current_session', 'current_mode', |
---|
| 786 | 'entry_session', 'reg_number' |
---|
[15060] | 787 | ) |
---|
[15051] | 788 | title = _(u'Session Payments Overview') |
---|
| 789 | |
---|
[15060] | 790 | @property |
---|
| 791 | def paycatyears(self): |
---|
| 792 | cas = grok.getSite()['configuration'].current_academic_session |
---|
| 793 | paycatyears = [] |
---|
| 794 | if cas: |
---|
[15918] | 795 | year_range = range(cas-2, cas+1) |
---|
[15060] | 796 | year_range_tuple = tuple([str(year)[2:] for year in year_range]) |
---|
| 797 | paycatyears = [ |
---|
| 798 | cat+year for cat in self.paycats for year in year_range_tuple] |
---|
| 799 | return paycatyears |
---|
| 800 | |
---|
| 801 | @property |
---|
| 802 | def fields(self): |
---|
| 803 | return self.regular_fields + tuple(self.paycatyears) |
---|
| 804 | |
---|
[15051] | 805 | def mangle_value(self, value, name, context=None): |
---|
| 806 | """ |
---|
| 807 | """ |
---|
[15060] | 808 | amounts = dict() |
---|
| 809 | for catyear in self.paycatyears: |
---|
| 810 | amounts[catyear] = 0.0 |
---|
| 811 | if name[:-2] in self.paycats and context is not None: |
---|
[15051] | 812 | for ticket in context['payments'].values(): |
---|
[15060] | 813 | if ticket.p_category == name[:-2]: |
---|
[15051] | 814 | if ticket.p_state in ('waived', 'paid'): |
---|
[15060] | 815 | if str(ticket.p_session)[2:] == name[-2:]: |
---|
| 816 | amounts[name] += ticket.amount_auth |
---|
| 817 | if amounts[name] == 0.0: |
---|
| 818 | value = '' |
---|
| 819 | elif isinstance(amounts[name], float): |
---|
| 820 | value = round(amounts[name], 2) |
---|
[15051] | 821 | return super( |
---|
| 822 | StudentExporter, self).mangle_value( |
---|
| 823 | value, name, context=context) |
---|
| 824 | |
---|
[15921] | 825 | class StudyLevelsOverviewExporter(StudentExporter): |
---|
[12862] | 826 | """The Student Study Levels Overview Exporter first filters the set of |
---|
| 827 | students by searching the students catalog. Then it exports some student |
---|
| 828 | base data together with the session key of registered levels. |
---|
| 829 | Sample output: |
---|
| 830 | |
---|
| 831 | header: ``...100,110,120,200,210,220,300...`` |
---|
| 832 | |
---|
| 833 | data: ``...2010,,,2011,2012,,2013...`` |
---|
| 834 | |
---|
| 835 | This csv data string means that level 100 was registered in session |
---|
| 836 | 2010/2011, level 200 in session 2011/2012, level 210 (200 on 1st probation) |
---|
| 837 | in session 2012/2013 and level 300 in session 2013/2014. |
---|
[9744] | 838 | """ |
---|
| 839 | grok.name('studylevelsoverview') |
---|
| 840 | |
---|
[9787] | 841 | avail_levels = tuple([str(x) for x in study_levels(None)]) |
---|
[9744] | 842 | |
---|
| 843 | fields = ('student_id', ) + ( |
---|
| 844 | 'state', 'certcode', 'faccode', 'depcode', 'is_postgrad', |
---|
[9761] | 845 | 'entry_session', 'current_level', 'current_session', |
---|
[9787] | 846 | ) + avail_levels |
---|
[15920] | 847 | title = _(u'Study Levels Overview') |
---|
[9744] | 848 | |
---|
| 849 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 850 | """The mangler checks if a given level has been registered. It returns |
---|
| 851 | the ``level_session`` attribute of the student study level object |
---|
| 852 | if the named level exists. |
---|
| 853 | """ |
---|
[9787] | 854 | if name in self.avail_levels and context is not None: |
---|
[9744] | 855 | value = '' |
---|
| 856 | for level in context['studycourse'].values(): |
---|
| 857 | if level.level == int(name): |
---|
[9761] | 858 | value = '%s' % level.level_session |
---|
[9744] | 859 | break |
---|
| 860 | return super( |
---|
[12079] | 861 | StudentExporter, self).mangle_value( |
---|
[9744] | 862 | value, name, context=context) |
---|
[9936] | 863 | |
---|
| 864 | class ComboCardDataExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[12862] | 865 | """Like all other exporters the Combo Card Data Exporter first filters the |
---|
| 866 | set of students by searching the students catalog. Then it exports some |
---|
| 867 | student base data which are neccessary to print for the Interswitch combo |
---|
| 868 | card (identity card for students). The output contains a ``passport_path`` |
---|
| 869 | column which contains the filesystem path of the passport image file. |
---|
| 870 | If no path is given, no passport image file exists. |
---|
[9936] | 871 | """ |
---|
| 872 | grok.name('combocard') |
---|
| 873 | |
---|
| 874 | fields = ('display_fullname', |
---|
[9937] | 875 | 'student_id','matric_number', |
---|
| 876 | 'certificate', 'faculty', 'department', 'passport_path') |
---|
[9936] | 877 | title = _(u'Combo Card Data') |
---|
| 878 | |
---|
| 879 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 880 | """The mangler determines the titles of faculty, department |
---|
| 881 | and certificate. It also computes the path of passport image file |
---|
| 882 | stored in the filesystem. |
---|
| 883 | """ |
---|
[9936] | 884 | certificate = context['studycourse'].certificate |
---|
| 885 | if name == 'certificate' and certificate is not None: |
---|
| 886 | value = certificate.title |
---|
| 887 | if name == 'department' and certificate is not None: |
---|
[10650] | 888 | value = certificate.__parent__.__parent__.longtitle |
---|
[9936] | 889 | if name == 'faculty' and certificate is not None: |
---|
[10650] | 890 | value = certificate.__parent__.__parent__.__parent__.longtitle |
---|
[9937] | 891 | if name == 'passport_path' and certificate is not None: |
---|
[12862] | 892 | file_id = IFileStoreNameChooser(context).chooseName( |
---|
| 893 | attr='passport.jpg') |
---|
[9937] | 894 | os_path = getUtility(IExtFileStore)._pathFromFileID(file_id) |
---|
| 895 | if not os.path.exists(os_path): |
---|
| 896 | value = None |
---|
| 897 | else: |
---|
| 898 | value = '/'.join(os_path.split('/')[-4:]) |
---|
[9936] | 899 | return super( |
---|
| 900 | ComboCardDataExporter, self).mangle_value( |
---|
[15920] | 901 | value, name, context=context) |
---|
| 902 | |
---|
[15921] | 903 | class TranscriptDataExporter(StudentExporter): |
---|
| 904 | """The Transcript Data Exporter first filters the set of |
---|
[15920] | 905 | students by searching the students catalog. Then it exports student data |
---|
| 906 | along with their transcript data. |
---|
| 907 | """ |
---|
| 908 | grok.name('transcriptdata') |
---|
| 909 | |
---|
| 910 | fields = ('student_id', ) + ( |
---|
| 911 | 'state', 'certcode', 'faccode', 'depcode', |
---|
| 912 | 'entry_session', 'current_level', 'current_session', |
---|
| 913 | 'transcript_data') |
---|
| 914 | title = _(u'Transcript Data') |
---|
| 915 | |
---|
| 916 | def mangle_value(self, value, name, context=None): |
---|
[15924] | 917 | """The mangler determines and formats the transcript data. |
---|
[15920] | 918 | """ |
---|
| 919 | if name == 'transcript_data': |
---|
| 920 | value = {} |
---|
| 921 | td = context['studycourse'].getTranscriptData()[0] |
---|
| 922 | for level in td: |
---|
| 923 | tickets_1 = ','.join(i.code for i in level['tickets_1']) |
---|
| 924 | tickets_2 = ','.join(i.code for i in level['tickets_2']) |
---|
| 925 | tickets_3 = ','.join(i.code for i in level['tickets_3']) |
---|
| 926 | value = "Level %s; 1st: %s; 2nd: %s; 3rd: %s; sgpa: %s" % ( |
---|
| 927 | level['level_key'], tickets_1, tickets_2, |
---|
| 928 | tickets_3, level['sgpa'], |
---|
| 929 | ) |
---|
| 930 | return super( |
---|
[15921] | 931 | TranscriptDataExporter, self).mangle_value( |
---|
[9936] | 932 | value, name, context=context) |
---|