[8057] | 1 | ## $Id: export.py 14395 2017-01-13 16:36:24Z 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 _ |
---|
[9843] | 27 | from waeup.kofa.students.catalog import StudentsQuery, CourseTicketsQuery |
---|
[8015] | 28 | from waeup.kofa.students.interfaces import ( |
---|
[8371] | 29 | IStudent, IStudentStudyCourse, IStudentStudyLevel, ICourseTicket, |
---|
[9427] | 30 | IStudentOnlinePayment, ICSVStudentExporter, IBedTicket) |
---|
[9787] | 31 | from waeup.kofa.students.vocabularies import study_levels |
---|
[7944] | 32 | from waeup.kofa.utils.batching import ExporterBase |
---|
[11757] | 33 | from waeup.kofa.utils.helpers import iface_names, to_timezone |
---|
[7944] | 34 | |
---|
[8400] | 35 | |
---|
[9787] | 36 | def get_students(site, stud_filter=StudentsQuery()): |
---|
[8414] | 37 | """Get all students registered in catalog in `site`. |
---|
[7944] | 38 | """ |
---|
[9787] | 39 | return stud_filter.query() |
---|
[8414] | 40 | |
---|
| 41 | def get_studycourses(students): |
---|
| 42 | """Get studycourses of `students`. |
---|
| 43 | """ |
---|
| 44 | return [x.get('studycourse', None) for x in students |
---|
| 45 | if x is not None] |
---|
| 46 | |
---|
| 47 | def get_levels(students): |
---|
| 48 | """Get all studylevels of `students`. |
---|
| 49 | """ |
---|
| 50 | levels = [] |
---|
| 51 | for course in get_studycourses(students): |
---|
| 52 | for level in course.values(): |
---|
| 53 | levels.append(level) |
---|
| 54 | return levels |
---|
| 55 | |
---|
[9844] | 56 | def get_tickets(students, **kw): |
---|
| 57 | """Get course tickets of `students`. |
---|
[10017] | 58 | If code is passed through, filter course tickets |
---|
| 59 | which belong to this course code and meets level |
---|
| 60 | and level_session. |
---|
[8414] | 61 | """ |
---|
| 62 | tickets = [] |
---|
[9844] | 63 | code = kw.get('code', None) |
---|
[10017] | 64 | level = kw.get('level', None) |
---|
[13253] | 65 | level_session = kw.get('session', None) |
---|
[9844] | 66 | if code is None: |
---|
[10017] | 67 | for level_obj in get_levels(students): |
---|
| 68 | for ticket in level_obj.values(): |
---|
[9844] | 69 | tickets.append(ticket) |
---|
| 70 | else: |
---|
[10017] | 71 | for level_obj in get_levels(students): |
---|
| 72 | for ticket in level_obj.values(): |
---|
| 73 | if ticket.code != code: |
---|
| 74 | continue |
---|
[11483] | 75 | if level is not None: |
---|
| 76 | level = int(level) |
---|
| 77 | if level_obj.level in (10, 999, None) \ |
---|
| 78 | and int(level) != level_obj.level: |
---|
| 79 | continue |
---|
| 80 | if level_obj.level not in range(level, level+100, 10): |
---|
| 81 | continue |
---|
[10017] | 82 | if level_session is not None and \ |
---|
| 83 | int(level_session) != level_obj.level_session: |
---|
| 84 | continue |
---|
| 85 | tickets.append(ticket) |
---|
[8414] | 86 | return tickets |
---|
| 87 | |
---|
[13894] | 88 | def get_tickets_for_lecturer(students, **kw): |
---|
| 89 | """Get course tickets of `students`. |
---|
| 90 | Filter course tickets which belong to this course code and |
---|
| 91 | which are editable by lecturers. |
---|
| 92 | """ |
---|
| 93 | tickets = [] |
---|
| 94 | code = kw.get('code', None) |
---|
| 95 | level_session = kw.get('session', None) |
---|
| 96 | level = kw.get('level', None) |
---|
| 97 | for level_obj in get_levels(students): |
---|
| 98 | for ticket in level_obj.values(): |
---|
| 99 | if ticket.code != code: |
---|
| 100 | continue |
---|
| 101 | if not ticket.editable_by_lecturer: |
---|
| 102 | continue |
---|
| 103 | if level is not None: |
---|
| 104 | level = int(level) |
---|
| 105 | if level_obj.level in (10, 999, None) \ |
---|
| 106 | and int(level) != level_obj.level: |
---|
| 107 | continue |
---|
| 108 | if level_obj.level not in range(level, level+100, 10): |
---|
| 109 | continue |
---|
| 110 | if level_session is not None and \ |
---|
| 111 | int(level_session) != level_obj.level_session: |
---|
| 112 | continue |
---|
| 113 | tickets.append(ticket) |
---|
| 114 | return tickets |
---|
| 115 | |
---|
[12971] | 116 | def get_payments(students, p_state=None, **kw): |
---|
[11730] | 117 | """Get all payments of `students` within given payment_date period. |
---|
[10296] | 118 | """ |
---|
[11730] | 119 | date_format = '%d/%m/%Y' |
---|
[10296] | 120 | payments = [] |
---|
[11730] | 121 | payments_start = kw.get('payments_start') |
---|
| 122 | payments_end = kw.get('payments_end') |
---|
| 123 | if payments_start and payments_end: |
---|
| 124 | # Payment period given |
---|
| 125 | payments_start = datetime.strptime(payments_start, date_format) |
---|
| 126 | payments_end = datetime.strptime(payments_end, date_format) |
---|
[11757] | 127 | tz = getUtility(IKofaUtils).tzinfo |
---|
| 128 | payments_start = tz.localize(payments_start) |
---|
[13156] | 129 | payments_end = tz.localize(payments_end) + timedelta(days=1) |
---|
[12971] | 130 | if p_state: |
---|
| 131 | # Only paid or unpaid tickets in payment period are considered |
---|
[11730] | 132 | for student in students: |
---|
| 133 | for payment in student.get('payments', {}).values(): |
---|
[12971] | 134 | if payment.payment_date and payment.p_state == p_state: |
---|
[11757] | 135 | payment_date = to_timezone(payment.payment_date, tz) |
---|
| 136 | if payment_date > payments_start and \ |
---|
| 137 | payment_date < payments_end: |
---|
| 138 | payments.append(payment) |
---|
[11730] | 139 | else: |
---|
| 140 | # All tickets in payment period are considered |
---|
| 141 | for student in students: |
---|
| 142 | for payment in student.get('payments', {}).values(): |
---|
[11757] | 143 | if payment.payment_date: |
---|
| 144 | payment_date = to_timezone(payment.payment_date, tz) |
---|
| 145 | if payment_date > payments_start and \ |
---|
| 146 | payment_date < payments_end: |
---|
| 147 | payments.append(payment) |
---|
[11730] | 148 | else: |
---|
| 149 | # Payment period not given |
---|
[12971] | 150 | if p_state: |
---|
[11730] | 151 | # Only paid tickets are considered |
---|
| 152 | for student in students: |
---|
| 153 | for payment in student.get('payments', {}).values(): |
---|
[12971] | 154 | if payment.p_state == p_state: |
---|
[11730] | 155 | payments.append(payment) |
---|
| 156 | else: |
---|
| 157 | # All tickets are considered |
---|
| 158 | for student in students: |
---|
| 159 | for payment in student.get('payments', {}).values(): |
---|
| 160 | payments.append(payment) |
---|
[10296] | 161 | return payments |
---|
| 162 | |
---|
[9427] | 163 | def get_bedtickets(students): |
---|
| 164 | """Get all bedtickets of `students`. |
---|
| 165 | """ |
---|
| 166 | tickets = [] |
---|
| 167 | for student in students: |
---|
| 168 | for ticket in student.get('accommodation', {}).values(): |
---|
| 169 | tickets.append(ticket) |
---|
| 170 | return tickets |
---|
[8414] | 171 | |
---|
| 172 | class StudentExporterBase(ExporterBase): |
---|
| 173 | """Exporter for students or related objects. |
---|
| 174 | This is a baseclass. |
---|
| 175 | """ |
---|
| 176 | grok.baseclass() |
---|
[8411] | 177 | grok.implements(ICSVStudentExporter) |
---|
| 178 | grok.provides(ICSVStudentExporter) |
---|
[8414] | 179 | |
---|
[9844] | 180 | def filter_func(self, x, **kw): |
---|
[9802] | 181 | return x |
---|
[9797] | 182 | |
---|
[9801] | 183 | def get_filtered(self, site, **kw): |
---|
[9843] | 184 | """Get students from a catalog filtered by keywords. |
---|
| 185 | students_catalog is the default catalog. The keys must be valid |
---|
[9933] | 186 | catalog index names. |
---|
[9843] | 187 | Returns a simple empty list, a list with `Student` |
---|
| 188 | objects or a catalog result set with `Student` |
---|
[9801] | 189 | objects. |
---|
| 190 | |
---|
| 191 | .. seealso:: `waeup.kofa.students.catalog.StudentsCatalog` |
---|
| 192 | |
---|
| 193 | """ |
---|
[9843] | 194 | # Pass only given keywords to create FilteredCatalogQuery objects. |
---|
| 195 | # This way we avoid |
---|
[9801] | 196 | # trouble with `None` value ambivalences and queries are also |
---|
| 197 | # faster (normally less indexes to ask). Drawback is, that |
---|
| 198 | # developers must look into catalog to see what keywords are |
---|
| 199 | # valid. |
---|
[9845] | 200 | if kw.get('catalog', None) == 'coursetickets': |
---|
[9843] | 201 | coursetickets = CourseTicketsQuery(**kw).query() |
---|
| 202 | students = [] |
---|
| 203 | for ticket in coursetickets: |
---|
| 204 | students.append(ticket.student) |
---|
| 205 | return list(set(students)) |
---|
[11730] | 206 | # Payments can be filtered by payment_date. The period boundaries |
---|
| 207 | # are not keys of the catalog and must thus be removed from kw. |
---|
| 208 | try: |
---|
| 209 | del kw['payments_start'] |
---|
| 210 | del kw['payments_end'] |
---|
| 211 | except KeyError: |
---|
| 212 | pass |
---|
[9801] | 213 | query = StudentsQuery(**kw) |
---|
[9797] | 214 | return query.query() |
---|
| 215 | |
---|
[12518] | 216 | def get_selected(self, site, selected): |
---|
| 217 | """Get set of selected students. |
---|
| 218 | Returns a simple empty list or a list with `Student` |
---|
| 219 | objects. |
---|
| 220 | """ |
---|
| 221 | students = [] |
---|
| 222 | students_container = site.get('students', {}) |
---|
| 223 | for id in selected: |
---|
| 224 | student = students_container.get(id, None) |
---|
| 225 | if student: |
---|
| 226 | students.append(student) |
---|
| 227 | return students |
---|
| 228 | |
---|
[8414] | 229 | def export(self, values, filepath=None): |
---|
| 230 | """Export `values`, an iterable, as CSV file. |
---|
| 231 | If `filepath` is ``None``, a raw string with CSV data is returned. |
---|
| 232 | """ |
---|
| 233 | writer, outfile = self.get_csv_writer(filepath) |
---|
| 234 | for value in values: |
---|
| 235 | self.write_item(value, writer) |
---|
| 236 | return self.close_outfile(filepath, outfile) |
---|
| 237 | |
---|
[9797] | 238 | def export_all(self, site, filepath=None): |
---|
| 239 | """Export students into filepath as CSV data. |
---|
| 240 | If `filepath` is ``None``, a raw string with CSV data is returned. |
---|
[9763] | 241 | """ |
---|
[9802] | 242 | return self.export(self.filter_func(get_students(site)), filepath) |
---|
[8414] | 243 | |
---|
[9797] | 244 | def export_student(self, student, filepath=None): |
---|
| 245 | return self.export(self.filter_func([student]), filepath=filepath) |
---|
[9734] | 246 | |
---|
[9802] | 247 | def export_filtered(self, site, filepath=None, **kw): |
---|
| 248 | """Export items denoted by `kw`. |
---|
| 249 | If `filepath` is ``None``, a raw string with CSV data should |
---|
| 250 | be returned. |
---|
| 251 | """ |
---|
| 252 | data = self.get_filtered(site, **kw) |
---|
[9844] | 253 | return self.export(self.filter_func(data, **kw), filepath=filepath) |
---|
[9802] | 254 | |
---|
[12518] | 255 | def export_selected(self,site, filepath=None, **kw): |
---|
| 256 | """Export data for selected set of students. |
---|
| 257 | """ |
---|
| 258 | selected = kw.get('selected', []) |
---|
| 259 | data = self.get_selected(site, selected) |
---|
| 260 | return self.export(self.filter_func(data, **kw), filepath=filepath) |
---|
[9802] | 261 | |
---|
[12518] | 262 | |
---|
[12079] | 263 | class StudentExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[12861] | 264 | """The Student Exporter first filters the set of students by searching the |
---|
| 265 | students catalog. Then it exports student base data of this set of students. |
---|
[8414] | 266 | """ |
---|
[7944] | 267 | grok.name('students') |
---|
| 268 | |
---|
[9936] | 269 | fields = tuple(sorted(iface_names(IStudent))) + ( |
---|
[9253] | 270 | 'password', 'state', 'history', 'certcode', 'is_postgrad', |
---|
| 271 | 'current_level', 'current_session') |
---|
[7944] | 272 | title = _(u'Students') |
---|
| 273 | |
---|
[8493] | 274 | def mangle_value(self, value, name, context=None): |
---|
[12861] | 275 | """The mangler prepares the history messages and adds a hash symbol at |
---|
| 276 | the end of the phone number to avoid annoying automatic number |
---|
| 277 | transformation by Excel or Calc.""" |
---|
[8493] | 278 | if name == 'history': |
---|
| 279 | value = value.messages |
---|
[8971] | 280 | if name == 'phone' and value is not None: |
---|
| 281 | # Append hash '#' to phone numbers to circumvent |
---|
| 282 | # unwanted excel automatic |
---|
[8947] | 283 | value = str('%s#' % value) |
---|
[8493] | 284 | return super( |
---|
[12079] | 285 | StudentExporter, self).mangle_value( |
---|
[8493] | 286 | value, name, context=context) |
---|
| 287 | |
---|
[7944] | 288 | |
---|
[8414] | 289 | class StudentStudyCourseExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[12861] | 290 | """The Student Study Course Exporter first filters the set of students |
---|
| 291 | by searching the students catalog. Then it exports the data of the current |
---|
| 292 | study course container of each student from this set. It does |
---|
| 293 | not export their content. |
---|
[7994] | 294 | """ |
---|
| 295 | grok.name('studentstudycourses') |
---|
| 296 | |
---|
[8493] | 297 | fields = tuple(sorted(iface_names(IStudentStudyCourse))) + ('student_id',) |
---|
[7994] | 298 | title = _(u'Student Study Courses') |
---|
| 299 | |
---|
[9844] | 300 | def filter_func(self, x, **kw): |
---|
[9797] | 301 | return get_studycourses(x) |
---|
| 302 | |
---|
[7994] | 303 | def mangle_value(self, value, name, context=None): |
---|
[12861] | 304 | """The mangler determines the certificate code and the student id. |
---|
[7994] | 305 | """ |
---|
| 306 | if name == 'certificate' and value is not None: |
---|
| 307 | # XXX: hopefully cert codes are unique site-wide |
---|
| 308 | value = value.code |
---|
[8493] | 309 | if name == 'student_id' and context is not None: |
---|
[8736] | 310 | student = context.student |
---|
[8493] | 311 | value = getattr(student, name, None) |
---|
[7994] | 312 | return super( |
---|
| 313 | StudentStudyCourseExporter, self).mangle_value( |
---|
| 314 | value, name, context=context) |
---|
| 315 | |
---|
| 316 | |
---|
[8414] | 317 | class StudentStudyLevelExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[12861] | 318 | """The Student Study Level Exporter first filters the set of students |
---|
| 319 | by searching the students catalog. Then it exports the data of the student's |
---|
[12862] | 320 | study level container data but not their content (course tickets). |
---|
[12861] | 321 | The exporter iterates over all objects in the students' ``studycourse`` |
---|
| 322 | containers. |
---|
[8015] | 323 | """ |
---|
| 324 | grok.name('studentstudylevels') |
---|
| 325 | |
---|
[8493] | 326 | fields = tuple(sorted(iface_names( |
---|
[12873] | 327 | IStudentStudyLevel))) + ( |
---|
[9253] | 328 | 'student_id', 'number_of_tickets','certcode') |
---|
[8015] | 329 | title = _(u'Student Study Levels') |
---|
| 330 | |
---|
[9844] | 331 | def filter_func(self, x, **kw): |
---|
[9802] | 332 | return get_levels(x) |
---|
| 333 | |
---|
[8015] | 334 | def mangle_value(self, value, name, context=None): |
---|
[12861] | 335 | """The mangler determines the student id, nothing else. |
---|
[8015] | 336 | """ |
---|
[8493] | 337 | if name == 'student_id' and context is not None: |
---|
[8736] | 338 | student = context.student |
---|
[8493] | 339 | value = getattr(student, name, None) |
---|
[8015] | 340 | return super( |
---|
| 341 | StudentStudyLevelExporter, self).mangle_value( |
---|
| 342 | value, name, context=context) |
---|
| 343 | |
---|
[8414] | 344 | class CourseTicketExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[13144] | 345 | """The Course Ticket Exporter exports course tickets. Usually, |
---|
[12861] | 346 | the exporter first filters the set of students by searching the |
---|
| 347 | students catalog. Then it collects and iterates over all ``studylevel`` |
---|
| 348 | containers of the filtered student set and finally |
---|
| 349 | iterates over all items inside these containers. |
---|
| 350 | |
---|
| 351 | If the course code is passed through, the exporter uses a different |
---|
| 352 | catalog. It searches for students in the course tickets catalog and |
---|
| 353 | exports those course tickets which belong to the given course code and |
---|
[13263] | 354 | also meet level and session passed through at the same time. |
---|
[12862] | 355 | This happens if the exporter is called at course level in the academic |
---|
[12861] | 356 | section. |
---|
[8342] | 357 | """ |
---|
| 358 | grok.name('coursetickets') |
---|
| 359 | |
---|
[8493] | 360 | fields = tuple(sorted(iface_names(ICourseTicket) + |
---|
[11484] | 361 | ['level', 'code', 'level_session'])) + ('student_id', |
---|
| 362 | 'certcode', 'display_fullname') |
---|
[8342] | 363 | title = _(u'Course Tickets') |
---|
| 364 | |
---|
[9844] | 365 | def filter_func(self, x, **kw): |
---|
| 366 | return get_tickets(x, **kw) |
---|
[9802] | 367 | |
---|
[8342] | 368 | def mangle_value(self, value, name, context=None): |
---|
[12861] | 369 | """The mangler determines the student's id and fullname. |
---|
[8342] | 370 | """ |
---|
| 371 | if context is not None: |
---|
[8736] | 372 | student = context.student |
---|
[11484] | 373 | if name in ('student_id', 'display_fullname') and student is not None: |
---|
[8342] | 374 | value = getattr(student, name, None) |
---|
| 375 | return super( |
---|
| 376 | CourseTicketExporter, self).mangle_value( |
---|
| 377 | value, name, context=context) |
---|
| 378 | |
---|
[13894] | 379 | class DataForLecturerExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[13766] | 380 | """ |
---|
| 381 | """ |
---|
| 382 | grok.name('lecturer') |
---|
[8342] | 383 | |
---|
[13894] | 384 | fields = ('matric_number', 'student_id', 'display_fullname', |
---|
[13766] | 385 | 'level', 'code', 'level_session', 'score') |
---|
| 386 | |
---|
| 387 | title = _(u'Data for Lecturer') |
---|
| 388 | |
---|
[13894] | 389 | def filter_func(self, x, **kw): |
---|
| 390 | return get_tickets_for_lecturer(x, **kw) |
---|
| 391 | |
---|
[13766] | 392 | def mangle_value(self, value, name, context=None): |
---|
| 393 | """The mangler determines the student's id and fullname. |
---|
| 394 | """ |
---|
| 395 | if context is not None: |
---|
| 396 | student = context.student |
---|
[13885] | 397 | if name in ('matric_number', |
---|
| 398 | 'reg_number', |
---|
| 399 | 'student_id', |
---|
| 400 | 'display_fullname',) and student is not None: |
---|
[13766] | 401 | value = getattr(student, name, None) |
---|
| 402 | return super( |
---|
[13894] | 403 | DataForLecturerExporter, self).mangle_value( |
---|
[13766] | 404 | value, name, context=context) |
---|
| 405 | |
---|
[12865] | 406 | class StudentPaymentExporter(grok.GlobalUtility, StudentExporterBase): |
---|
| 407 | """The Student Payment Exporter first filters the set of students |
---|
[12862] | 408 | by searching the students catalog. Then it exports student payment |
---|
| 409 | tickets by iterating over the items of the student's ``payments`` |
---|
| 410 | container. If the payment period is given only tickets, which were |
---|
| 411 | paid in payment period, are considered for export. |
---|
[8371] | 412 | """ |
---|
| 413 | grok.name('studentpayments') |
---|
| 414 | |
---|
| 415 | fields = tuple( |
---|
[8493] | 416 | sorted(iface_names( |
---|
[9984] | 417 | IStudentOnlinePayment, exclude_attribs=False, |
---|
[13871] | 418 | omit=['display_item', 'certificate', 'student']))) + ( |
---|
[13641] | 419 | 'student_id','state','current_session') |
---|
[8576] | 420 | title = _(u'Student Payments') |
---|
[8371] | 421 | |
---|
[9844] | 422 | def filter_func(self, x, **kw): |
---|
[11730] | 423 | return get_payments(x, **kw) |
---|
[9802] | 424 | |
---|
[8371] | 425 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 426 | """The mangler determines the student's id, registration |
---|
| 427 | state and current session. |
---|
[8371] | 428 | """ |
---|
| 429 | if context is not None: |
---|
[8736] | 430 | student = context.student |
---|
[10232] | 431 | if name in ['student_id','state', |
---|
| 432 | 'current_session'] and student is not None: |
---|
[8371] | 433 | value = getattr(student, name, None) |
---|
| 434 | return super( |
---|
[12865] | 435 | StudentPaymentExporter, self).mangle_value( |
---|
[8371] | 436 | value, name, context=context) |
---|
| 437 | |
---|
[12971] | 438 | class StudentUnpaidPaymentExporter(StudentPaymentExporter): |
---|
| 439 | """The Student Unpaid Payment Exporter works just like the |
---|
| 440 | Student Payments Exporter but it exports only unpaid tickets. |
---|
| 441 | This exporter is designed for finding and finally purging outdated |
---|
| 442 | payment ticket. |
---|
| 443 | """ |
---|
| 444 | grok.name('studentunpaidpayments') |
---|
| 445 | |
---|
| 446 | title = _(u'Student Unpaid Payments') |
---|
| 447 | |
---|
| 448 | def filter_func(self, x, **kw): |
---|
| 449 | return get_payments(x, p_state='unpaid', **kw) |
---|
| 450 | |
---|
[12865] | 451 | class DataForBursaryExporter(StudentPaymentExporter): |
---|
[12862] | 452 | """The DataForBursary Exporter works just like the Student Payments Exporter |
---|
| 453 | but it exports much more information about the student. It combines |
---|
| 454 | payment and student data in one table in order to spare postprocessing of |
---|
| 455 | two seperate export files. The exporter is primarily used by bursary |
---|
| 456 | officers who have exclusively access to this exporter. |
---|
[10233] | 457 | """ |
---|
| 458 | grok.name('bursary') |
---|
| 459 | |
---|
[10296] | 460 | def filter_func(self, x, **kw): |
---|
[12971] | 461 | return get_payments(x, p_state='paid', **kw) |
---|
[10296] | 462 | |
---|
[10233] | 463 | fields = tuple( |
---|
| 464 | sorted(iface_names( |
---|
| 465 | IStudentOnlinePayment, exclude_attribs=False, |
---|
[13871] | 466 | omit=['display_item', 'certificate', 'student']))) + ( |
---|
[11702] | 467 | 'student_id','matric_number','reg_number', |
---|
[10236] | 468 | 'firstname', 'middlename', 'lastname', |
---|
| 469 | 'state','current_session', |
---|
| 470 | 'entry_session', 'entry_mode', |
---|
[13943] | 471 | 'faccode', 'depcode','certcode') |
---|
[10233] | 472 | title = _(u'Payment Data for Bursary') |
---|
| 473 | |
---|
| 474 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 475 | """The mangler fetches the student data. |
---|
[10233] | 476 | """ |
---|
| 477 | if context is not None: |
---|
| 478 | student = context.student |
---|
[10236] | 479 | if name in [ |
---|
[11702] | 480 | 'student_id','matric_number', 'reg_number', |
---|
[10236] | 481 | 'firstname', 'middlename', 'lastname', |
---|
[11702] | 482 | 'state', 'current_session', |
---|
[10236] | 483 | 'entry_session', 'entry_mode', |
---|
[11702] | 484 | 'faccode', 'depcode', 'certcode'] and student is not None: |
---|
[10233] | 485 | value = getattr(student, name, None) |
---|
| 486 | return super( |
---|
[12865] | 487 | StudentPaymentExporter, self).mangle_value( |
---|
[10233] | 488 | value, name, context=context) |
---|
| 489 | |
---|
[12865] | 490 | class BedTicketExporter(grok.GlobalUtility, StudentExporterBase): |
---|
| 491 | """The Bed Ticket Exporter first filters the set of students |
---|
[12862] | 492 | by searching the students catalog. Then it exports bed |
---|
| 493 | tickets by iterating over the items of the student's ``accommodation`` |
---|
| 494 | container. |
---|
[9427] | 495 | """ |
---|
| 496 | grok.name('bedtickets') |
---|
| 497 | |
---|
| 498 | fields = tuple( |
---|
| 499 | sorted(iface_names( |
---|
[9984] | 500 | IBedTicket, exclude_attribs=False, |
---|
[13314] | 501 | omit=['display_coordinates', 'maint_payment_made']))) + ( |
---|
[9984] | 502 | 'student_id', 'actual_bed_type') |
---|
[9427] | 503 | title = _(u'Bed Tickets') |
---|
| 504 | |
---|
[9844] | 505 | def filter_func(self, x, **kw): |
---|
[9802] | 506 | return get_bedtickets(x) |
---|
| 507 | |
---|
[9427] | 508 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 509 | """The mangler determines the student id and the type of the bed |
---|
| 510 | which has been booked in the ticket. |
---|
[9427] | 511 | """ |
---|
| 512 | if context is not None: |
---|
| 513 | student = context.student |
---|
| 514 | if name in ['student_id'] and student is not None: |
---|
| 515 | value = getattr(student, name, None) |
---|
| 516 | if name == 'bed' and value is not None: |
---|
| 517 | value = getattr(value, 'bed_id', None) |
---|
| 518 | if name == 'actual_bed_type': |
---|
[14395] | 519 | value = getattr(getattr(context, 'bed', None), 'bed_type', None) |
---|
[9427] | 520 | return super( |
---|
[12865] | 521 | BedTicketExporter, self).mangle_value( |
---|
[9427] | 522 | value, name, context=context) |
---|
| 523 | |
---|
[12079] | 524 | class StudentPaymentsOverviewExporter(StudentExporter): |
---|
[12862] | 525 | """The Student Payments Overview Exporter first filters the set of students |
---|
| 526 | by searching the students catalog. Then it exports some student base data |
---|
| 527 | together with the total school fee amount paid in each year over a |
---|
| 528 | predefined year range (current year - 9, ... , current year + 1). |
---|
[9574] | 529 | """ |
---|
| 530 | grok.name('paymentsoverview') |
---|
| 531 | |
---|
| 532 | curr_year = datetime.now().year |
---|
[13639] | 533 | year_range = range(curr_year - 10, curr_year + 1) |
---|
[9574] | 534 | year_range_tuple = tuple([str(year) for year in year_range]) |
---|
| 535 | |
---|
[9983] | 536 | fields = ('student_id', 'matric_number', 'display_fullname', |
---|
[9574] | 537 | 'state', 'certcode', 'faccode', 'depcode', 'is_postgrad', |
---|
[13641] | 538 | 'current_level', 'current_session', 'current_mode', |
---|
| 539 | 'entry_session', 'reg_number' |
---|
[9574] | 540 | ) + year_range_tuple |
---|
| 541 | title = _(u'Student Payments Overview') |
---|
| 542 | |
---|
| 543 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 544 | """The mangler summarizes the school fee amounts made per year. It |
---|
| 545 | iterates over all paid school fee payment tickets and |
---|
| 546 | adds together the amounts paid in a year. Waived payments |
---|
| 547 | are marked ``waived``. |
---|
| 548 | """ |
---|
[9574] | 549 | if name in self.year_range_tuple and context is not None: |
---|
[11661] | 550 | value = 0 |
---|
[9574] | 551 | for ticket in context['payments'].values(): |
---|
[12568] | 552 | if ticket.p_category == 'schoolfee' and \ |
---|
[9574] | 553 | ticket.p_session == int(name): |
---|
[12568] | 554 | if ticket.p_state == 'waived': |
---|
| 555 | value = 'waived' |
---|
| 556 | break |
---|
| 557 | if ticket.p_state == 'paid': |
---|
| 558 | try: |
---|
| 559 | value += ticket.amount_auth |
---|
| 560 | except TypeError: |
---|
| 561 | pass |
---|
[11661] | 562 | if value == 0: |
---|
| 563 | value = '' |
---|
[14367] | 564 | elif isinstance(value, float): |
---|
| 565 | value = round(value, 2) |
---|
[9574] | 566 | return super( |
---|
[12079] | 567 | StudentExporter, self).mangle_value( |
---|
[9734] | 568 | value, name, context=context) |
---|
[9744] | 569 | |
---|
[12079] | 570 | class StudentStudyLevelsOverviewExporter(StudentExporter): |
---|
[12862] | 571 | """The Student Study Levels Overview Exporter first filters the set of |
---|
| 572 | students by searching the students catalog. Then it exports some student |
---|
| 573 | base data together with the session key of registered levels. |
---|
| 574 | Sample output: |
---|
| 575 | |
---|
| 576 | header: ``...100,110,120,200,210,220,300...`` |
---|
| 577 | |
---|
| 578 | data: ``...2010,,,2011,2012,,2013...`` |
---|
| 579 | |
---|
| 580 | This csv data string means that level 100 was registered in session |
---|
| 581 | 2010/2011, level 200 in session 2011/2012, level 210 (200 on 1st probation) |
---|
| 582 | in session 2012/2013 and level 300 in session 2013/2014. |
---|
[9744] | 583 | """ |
---|
| 584 | grok.name('studylevelsoverview') |
---|
| 585 | |
---|
[9787] | 586 | avail_levels = tuple([str(x) for x in study_levels(None)]) |
---|
[9744] | 587 | |
---|
| 588 | fields = ('student_id', ) + ( |
---|
| 589 | 'state', 'certcode', 'faccode', 'depcode', 'is_postgrad', |
---|
[9761] | 590 | 'entry_session', 'current_level', 'current_session', |
---|
[9787] | 591 | ) + avail_levels |
---|
[9744] | 592 | title = _(u'Student Study Levels Overview') |
---|
| 593 | |
---|
| 594 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 595 | """The mangler checks if a given level has been registered. It returns |
---|
| 596 | the ``level_session`` attribute of the student study level object |
---|
| 597 | if the named level exists. |
---|
| 598 | """ |
---|
[9787] | 599 | if name in self.avail_levels and context is not None: |
---|
[9744] | 600 | value = '' |
---|
| 601 | for level in context['studycourse'].values(): |
---|
| 602 | if level.level == int(name): |
---|
[9761] | 603 | value = '%s' % level.level_session |
---|
[9744] | 604 | break |
---|
| 605 | return super( |
---|
[12079] | 606 | StudentExporter, self).mangle_value( |
---|
[9744] | 607 | value, name, context=context) |
---|
[9936] | 608 | |
---|
| 609 | class ComboCardDataExporter(grok.GlobalUtility, StudentExporterBase): |
---|
[12862] | 610 | """Like all other exporters the Combo Card Data Exporter first filters the |
---|
| 611 | set of students by searching the students catalog. Then it exports some |
---|
| 612 | student base data which are neccessary to print for the Interswitch combo |
---|
| 613 | card (identity card for students). The output contains a ``passport_path`` |
---|
| 614 | column which contains the filesystem path of the passport image file. |
---|
| 615 | If no path is given, no passport image file exists. |
---|
[9936] | 616 | """ |
---|
| 617 | grok.name('combocard') |
---|
| 618 | |
---|
| 619 | fields = ('display_fullname', |
---|
[9937] | 620 | 'student_id','matric_number', |
---|
| 621 | 'certificate', 'faculty', 'department', 'passport_path') |
---|
[9936] | 622 | title = _(u'Combo Card Data') |
---|
| 623 | |
---|
| 624 | def mangle_value(self, value, name, context=None): |
---|
[12862] | 625 | """The mangler determines the titles of faculty, department |
---|
| 626 | and certificate. It also computes the path of passport image file |
---|
| 627 | stored in the filesystem. |
---|
| 628 | """ |
---|
[9936] | 629 | certificate = context['studycourse'].certificate |
---|
| 630 | if name == 'certificate' and certificate is not None: |
---|
| 631 | value = certificate.title |
---|
| 632 | if name == 'department' and certificate is not None: |
---|
[10650] | 633 | value = certificate.__parent__.__parent__.longtitle |
---|
[9936] | 634 | if name == 'faculty' and certificate is not None: |
---|
[10650] | 635 | value = certificate.__parent__.__parent__.__parent__.longtitle |
---|
[9937] | 636 | if name == 'passport_path' and certificate is not None: |
---|
[12862] | 637 | file_id = IFileStoreNameChooser(context).chooseName( |
---|
| 638 | attr='passport.jpg') |
---|
[9937] | 639 | os_path = getUtility(IExtFileStore)._pathFromFileID(file_id) |
---|
| 640 | if not os.path.exists(os_path): |
---|
| 641 | value = None |
---|
| 642 | else: |
---|
| 643 | value = '/'.join(os_path.split('/')[-4:]) |
---|
[9936] | 644 | return super( |
---|
| 645 | ComboCardDataExporter, self).mangle_value( |
---|
| 646 | value, name, context=context) |
---|