[11546] | 1 | ## $Id: export.py 16039 2020-03-13 12:24:01Z 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 | ## |
---|
| 18 | """Exporters for student related stuff. |
---|
| 19 | """ |
---|
[14593] | 20 | import grok |
---|
| 21 | from zope.component import getUtility |
---|
[13569] | 22 | from waeup.kofa.utils.batching import ExporterBase |
---|
[13768] | 23 | from waeup.kofa.utils.helpers import iface_names |
---|
[14593] | 24 | from waeup.kofa.interfaces import IKofaUtils |
---|
| 25 | from waeup.kofa.students.export import (get_levels, |
---|
[15452] | 26 | DataForLecturerExporter, StudentExporterBase, |
---|
| 27 | SchoolFeePaymentsOverviewExporter, StudentExporter) |
---|
[11546] | 28 | from waeup.aaue.students.interfaces import ( |
---|
| 29 | ICustomStudent, ICustomStudentStudyCourse, |
---|
| 30 | ICustomStudentStudyLevel, |
---|
| 31 | ICustomCourseTicket, |
---|
| 32 | ICustomStudentOnlinePayment) |
---|
| 33 | from kofacustom.nigeria.students.export import ( |
---|
[12081] | 34 | NigeriaStudentExporter, NigeriaStudentStudyCourseExporter, |
---|
[11546] | 35 | NigeriaStudentStudyLevelExporter, |
---|
[12876] | 36 | NigeriaCourseTicketExporter, NigeriaStudentPaymentExporter) |
---|
[11546] | 37 | |
---|
[13768] | 38 | |
---|
[12081] | 39 | class CustomStudentExporter(NigeriaStudentExporter): |
---|
[11546] | 40 | """Exporter for Students. |
---|
| 41 | """ |
---|
| 42 | |
---|
| 43 | fields = tuple(sorted(iface_names( |
---|
| 44 | ICustomStudent, omit=['loggerInfo']))) + ( |
---|
| 45 | 'password', 'state', 'history', 'certcode', 'is_postgrad', |
---|
| 46 | 'current_level', 'current_session') |
---|
| 47 | |
---|
| 48 | class CustomStudentStudyCourseExporter(NigeriaStudentStudyCourseExporter): |
---|
| 49 | """Exporter for StudentStudyCourses. |
---|
| 50 | """ |
---|
| 51 | |
---|
| 52 | fields = tuple( |
---|
[14622] | 53 | sorted(iface_names(ICustomStudentStudyCourse))) + ( |
---|
| 54 | 'matric_number', 'state', 'student_id',) |
---|
[11546] | 55 | |
---|
[14622] | 56 | def mangle_value(self, value, name, context=None): |
---|
| 57 | if name == 'certificate' and value is not None: |
---|
| 58 | # XXX: hopefully cert codes are unique site-wide |
---|
| 59 | value = value.code |
---|
| 60 | if name in ('student_id', 'matric_number', 'state') and context is not None: |
---|
| 61 | student = context.student |
---|
| 62 | value = getattr(student, name, None) |
---|
| 63 | return ExporterBase().mangle_value(value, name, context=context) |
---|
| 64 | |
---|
[11546] | 65 | class CustomCourseTicketExporter(NigeriaCourseTicketExporter): |
---|
| 66 | """Exporter for CourseTickets. |
---|
| 67 | """ |
---|
| 68 | |
---|
| 69 | fields = tuple(sorted(iface_names(ICustomCourseTicket) + |
---|
| 70 | ['level', 'code', 'level_session'])) + ('student_id', |
---|
[16039] | 71 | 'certcode', 'display_fullname', 'matric_number', 'state', 'grade', |
---|
| 72 | 'total_score') |
---|
[11546] | 73 | |
---|
[13569] | 74 | def mangle_value(self, value, name, context=None): |
---|
| 75 | """The mangler determines the student's id and fullname. |
---|
| 76 | """ |
---|
| 77 | if context is not None: |
---|
| 78 | student = context.student |
---|
[15336] | 79 | if name in ('student_id', 'display_fullname', 'matric_number', 'state') \ |
---|
[13569] | 80 | and student is not None: |
---|
| 81 | value = getattr(student, name, None) |
---|
| 82 | return ExporterBase().mangle_value(value, name, context=context) |
---|
| 83 | |
---|
[11546] | 84 | class CustomStudentStudyLevelExporter(NigeriaStudentStudyLevelExporter): |
---|
| 85 | """Exporter for StudentStudyLevels. |
---|
| 86 | """ |
---|
| 87 | #: Fieldnames considered by this exporter |
---|
| 88 | fields = tuple(sorted(iface_names( |
---|
[12876] | 89 | ICustomStudentStudyLevel))) + ( |
---|
[14442] | 90 | 'student_id', 'matric_number', 'number_of_tickets','certcode', 'cgpa') |
---|
[11546] | 91 | |
---|
[14436] | 92 | def mangle_value(self, value, name, context=None): |
---|
| 93 | """The mangler determines the student id, nothing else. |
---|
| 94 | """ |
---|
| 95 | if name in ('student_id', 'matric_number') and context is not None: |
---|
| 96 | student = context.student |
---|
| 97 | value = getattr(student, name, None) |
---|
[14442] | 98 | elif name == 'cgpa': |
---|
| 99 | value = context.cumulative_params[0] |
---|
[14436] | 100 | return super( |
---|
| 101 | CustomStudentStudyLevelExporter, self).mangle_value( |
---|
| 102 | value, name, context=context) |
---|
| 103 | |
---|
[12876] | 104 | class CustomStudentPaymentExporter(NigeriaStudentPaymentExporter): |
---|
[11546] | 105 | """Exporter for OnlinePayment instances. |
---|
| 106 | """ |
---|
| 107 | |
---|
| 108 | fields = tuple( |
---|
| 109 | sorted(iface_names( |
---|
| 110 | ICustomStudentOnlinePayment, exclude_attribs=False, |
---|
[15471] | 111 | omit=['display_item','formatted_p_date']))) + ( |
---|
[11546] | 112 | 'student_id','state','current_session') |
---|
| 113 | |
---|
[13768] | 114 | class CustomDataForLecturerExporter(DataForLecturerExporter): |
---|
| 115 | """ |
---|
| 116 | """ |
---|
| 117 | |
---|
[14360] | 118 | fields = ('matric_number', 'student_id','display_fullname', |
---|
[14701] | 119 | 'depcode', 'faccode', |
---|
| 120 | 'level', 'code', 'level_session', 'ca', 'score', |
---|
[15414] | 121 | 'total_score', 'grade', 'imported_ts') |
---|
[13768] | 122 | |
---|
[14701] | 123 | def mangle_value(self, value, name, context=None): |
---|
| 124 | """The mangler determines the student's id and fullname. |
---|
| 125 | """ |
---|
| 126 | if context is not None: |
---|
| 127 | student = context.student |
---|
| 128 | if name in ('matric_number', |
---|
| 129 | 'reg_number', |
---|
| 130 | 'student_id', |
---|
| 131 | 'display_fullname', |
---|
| 132 | 'depcode', |
---|
| 133 | 'faccode') and student is not None: |
---|
| 134 | value = getattr(student, name, None) |
---|
| 135 | return super( |
---|
| 136 | DataForLecturerExporter, self).mangle_value( |
---|
| 137 | value, name, context=context) |
---|
| 138 | |
---|
[14593] | 139 | class LevelReportDataExporter(grok.GlobalUtility, StudentExporterBase): |
---|
| 140 | """ |
---|
| 141 | """ |
---|
| 142 | grok.name('levelreportdata') |
---|
| 143 | |
---|
[14595] | 144 | fields = ('matric_number', 'display_fullname','level','level_session', |
---|
[14593] | 145 | 'credits_counted', 'credits_passed','level_gpa', |
---|
| 146 | 'failed_courses','not_taken_courses','cum_credits_taken', |
---|
| 147 | 'cum_credits_passed','cgpa','remark') |
---|
| 148 | title = u'Summary of Result Data' |
---|
| 149 | |
---|
| 150 | def filter_func(self, x, **kw): |
---|
[16038] | 151 | return get_levels(x, **kw) |
---|
[14593] | 152 | |
---|
| 153 | def mangle_value(self, value, name, context=None): |
---|
| 154 | """The mangler determines the student id, nothing else. |
---|
| 155 | """ |
---|
| 156 | if context is not None: |
---|
| 157 | student = context.student |
---|
| 158 | format_float = getUtility(IKofaUtils).format_float |
---|
| 159 | if name in ('matric_number', |
---|
| 160 | 'display_fullname',) and student is not None: |
---|
| 161 | value = getattr(student, name, None) |
---|
| 162 | elif name == 'credits_counted': |
---|
| 163 | value = context.gpa_params[1] |
---|
| 164 | elif name == 'credits_passed': |
---|
| 165 | value = context.passed_params[2] |
---|
| 166 | elif name == 'level_gpa': |
---|
| 167 | value = format_float(context.gpa_params[0], 3) |
---|
| 168 | elif name == 'failed_courses': |
---|
| 169 | value = context.passed_params[4] |
---|
| 170 | elif name == 'not_taken_courses': |
---|
| 171 | value = context.passed_params[5] |
---|
| 172 | elif name == 'cum_credits_taken': |
---|
| 173 | value = context.cumulative_params[1] |
---|
| 174 | elif name == 'cum_credits_passed': |
---|
| 175 | value = context.cumulative_params[4] |
---|
| 176 | elif name == 'cgpa': |
---|
| 177 | value = format_float(context.cumulative_params[0], 3) |
---|
| 178 | elif name == 'remark': |
---|
| 179 | value = getattr(context, 'remark', '') |
---|
| 180 | return super( |
---|
| 181 | LevelReportDataExporter, self).mangle_value( |
---|
| 182 | value, name, context=context) |
---|
| 183 | |
---|
[15452] | 184 | class CustomSchoolFeePaymentsOverviewExporter(SchoolFeePaymentsOverviewExporter): |
---|
| 185 | """ |
---|
| 186 | """ |
---|
| 187 | |
---|
| 188 | def mangle_value(self, value, name, context=None): |
---|
| 189 | """ |
---|
| 190 | """ |
---|
| 191 | if name in self.year_range_tuple and context is not None: |
---|
| 192 | value = 0 |
---|
| 193 | for ticket in context['payments'].values(): |
---|
| 194 | if ticket.p_category in ( |
---|
| 195 | 'schoolfee', |
---|
| 196 | 'schoolfee_1', |
---|
| 197 | 'schoolfee_2', |
---|
| 198 | 'schoolfee_incl',) and \ |
---|
| 199 | ticket.p_session == int(name): |
---|
| 200 | if ticket.p_state == 'waived': |
---|
| 201 | value = 'waived' |
---|
| 202 | break |
---|
| 203 | if ticket.p_state == 'paid': |
---|
| 204 | try: |
---|
| 205 | value += ticket.amount_auth |
---|
| 206 | except TypeError: |
---|
| 207 | pass |
---|
| 208 | if value == 0: |
---|
| 209 | value = '' |
---|
| 210 | elif isinstance(value, float): |
---|
| 211 | value = round(value, 2) |
---|
| 212 | return super( |
---|
| 213 | StudentExporter, self).mangle_value( |
---|
| 214 | value, name, context=context) |
---|