[12856] | 1 | ## $Id: export.py 12084 2014-11-28 09:54:10Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2015 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 | """ |
---|
[16390] | 20 | import grok |
---|
[15025] | 21 | from datetime import datetime |
---|
[12856] | 22 | from waeup.uniben.students.interfaces import ( |
---|
| 23 | ICustomStudent, |
---|
| 24 | ICustomStudentStudyCourse, |
---|
| 25 | ICustomStudentStudyLevel, |
---|
| 26 | ICustomCourseTicket, |
---|
[16390] | 27 | ICustomStudentOnlinePayment, |
---|
| 28 | IMedicalHistory) |
---|
[12856] | 29 | from kofacustom.nigeria.students.export import ( |
---|
| 30 | NigeriaStudentExporter, |
---|
| 31 | NigeriaStudentStudyCourseExporter, |
---|
| 32 | NigeriaStudentStudyLevelExporter, |
---|
| 33 | NigeriaCourseTicketExporter, |
---|
[14856] | 34 | NigeriaStudentPaymentExporter, |
---|
[15025] | 35 | NigeriaDataForBursaryExporter, |
---|
[16498] | 36 | NigeriaTrimmedDataExporter, |
---|
[15025] | 37 | ) |
---|
[16390] | 38 | from waeup.kofa.students.export import ( |
---|
| 39 | SchoolFeePaymentsOverviewExporter, StudentExporterBase) |
---|
[12856] | 40 | from waeup.kofa.utils.helpers import iface_names |
---|
| 41 | |
---|
| 42 | class CustomStudentExporter(NigeriaStudentExporter): |
---|
| 43 | """Exporter for Students. |
---|
| 44 | """ |
---|
| 45 | |
---|
| 46 | fields = tuple(sorted(iface_names( |
---|
| 47 | ICustomStudent, omit=['loggerInfo']))) + ( |
---|
| 48 | 'password', 'state', 'history', 'certcode', 'is_postgrad', |
---|
| 49 | 'current_level', 'current_session') |
---|
| 50 | |
---|
[16498] | 51 | class CustomTrimmedDataExporter(NigeriaTrimmedDataExporter): |
---|
| 52 | """The Student Trimmed Data Exporter first filters the set of students |
---|
| 53 | by searching the students catalog. Then it exports a trimmed data set |
---|
| 54 | of this set of students. |
---|
| 55 | """ |
---|
| 56 | fields = ( |
---|
| 57 | 'student_id', |
---|
| 58 | 'matric_number', |
---|
| 59 | 'reg_number', |
---|
| 60 | 'firstname', |
---|
| 61 | 'middlename', |
---|
| 62 | 'lastname', |
---|
| 63 | 'sex', |
---|
| 64 | 'email', |
---|
| 65 | 'email2', |
---|
| 66 | 'phone', |
---|
[17776] | 67 | 'perm_address', |
---|
[16498] | 68 | 'nationality', |
---|
| 69 | 'date_of_birth', |
---|
| 70 | 'state', |
---|
| 71 | 'current_mode', |
---|
| 72 | 'certcode', |
---|
| 73 | 'faccode', |
---|
| 74 | 'depcode', |
---|
| 75 | 'current_level', |
---|
| 76 | 'current_session', |
---|
| 77 | 'current_verdict', |
---|
| 78 | 'entry_session', |
---|
| 79 | 'lg_state', |
---|
[17624] | 80 | 'lg_area', |
---|
[17785] | 81 | 'flash_notice', |
---|
| 82 | 'physical_clearance_date') |
---|
[16498] | 83 | |
---|
[12856] | 84 | class CustomStudentStudyCourseExporter(NigeriaStudentStudyCourseExporter): |
---|
| 85 | """Exporter for StudentStudyCourses. |
---|
| 86 | """ |
---|
| 87 | |
---|
| 88 | fields = tuple( |
---|
[16837] | 89 | sorted(iface_names(ICustomStudentStudyCourse))) + ( |
---|
| 90 | 'student_id', 'previous') |
---|
[12856] | 91 | |
---|
| 92 | class CustomStudentStudyLevelExporter(NigeriaStudentStudyLevelExporter): |
---|
| 93 | """Exporter for StudentStudyLevels. |
---|
| 94 | """ |
---|
| 95 | #: Fieldnames considered by this exporter |
---|
| 96 | fields = tuple(sorted(iface_names( |
---|
[12879] | 97 | ICustomStudentStudyLevel))) + ( |
---|
[16837] | 98 | 'student_id', 'number_of_tickets','certcode', 'previous') |
---|
[12856] | 99 | |
---|
| 100 | class CustomCourseTicketExporter(NigeriaCourseTicketExporter): |
---|
| 101 | """Exporter for CourseTickets. |
---|
| 102 | """ |
---|
| 103 | |
---|
| 104 | fields = tuple(sorted(iface_names(ICustomCourseTicket) + |
---|
| 105 | ['level', 'code', 'level_session'])) + ('student_id', |
---|
[17558] | 106 | 'certcode', 'display_fullname', 'previous', 'matric_number') |
---|
[12856] | 107 | |
---|
[12879] | 108 | class CustomStudentPaymentExporter(NigeriaStudentPaymentExporter): |
---|
[12856] | 109 | """Exporter for OnlinePayment instances. |
---|
| 110 | """ |
---|
| 111 | |
---|
| 112 | fields = tuple( |
---|
| 113 | sorted(iface_names( |
---|
| 114 | ICustomStudentOnlinePayment, exclude_attribs=False, |
---|
[13621] | 115 | omit=['display_item']))) + ( |
---|
[12856] | 116 | 'student_id','state','current_session') |
---|
| 117 | |
---|
[14856] | 118 | class CustomDataForBursaryExporter(NigeriaDataForBursaryExporter): |
---|
| 119 | """ |
---|
| 120 | """ |
---|
| 121 | |
---|
| 122 | fields = tuple( |
---|
| 123 | sorted(iface_names( |
---|
| 124 | ICustomStudentOnlinePayment, exclude_attribs=False, |
---|
| 125 | omit=['display_item', 'certificate', 'student']))) + ( |
---|
| 126 | 'student_id','matric_number','reg_number', |
---|
| 127 | 'firstname', 'middlename', 'lastname', |
---|
| 128 | 'state','current_session', |
---|
| 129 | 'entry_session', 'entry_mode', |
---|
| 130 | 'faccode', 'depcode','certcode') |
---|
[15025] | 131 | |
---|
[15048] | 132 | class CustomSchoolFeePaymentsOverviewExporter(SchoolFeePaymentsOverviewExporter): |
---|
[15025] | 133 | |
---|
| 134 | curr_year = datetime.now().year |
---|
[15044] | 135 | year_range = range(curr_year - 14, curr_year + 1) # 3 more years in Uniben |
---|
[15025] | 136 | year_range_tuple = tuple([str(year) for year in year_range]) |
---|
| 137 | |
---|
[16476] | 138 | fields = ('student_id', 'matric_number', 'firstname', 'middlename', |
---|
| 139 | 'lastname', 'state', 'certcode', 'faccode', 'depcode', 'is_postgrad', |
---|
[15025] | 140 | 'current_level', 'current_session', 'current_mode', |
---|
[16498] | 141 | 'entry_session', 'reg_number', 'email2', 'sex' |
---|
[15025] | 142 | ) + year_range_tuple |
---|
[16390] | 143 | |
---|
| 144 | class MedicalHistoryExporter(grok.GlobalUtility, StudentExporterBase): |
---|
| 145 | """ |
---|
| 146 | """ |
---|
| 147 | grok.name('medicalhistory') |
---|
| 148 | |
---|
| 149 | fields = tuple( |
---|
| 150 | sorted(iface_names( |
---|
| 151 | IMedicalHistory, exclude_attribs=False,))) + ( |
---|
| 152 | 'student_id','display_fullname', 'matric_number', 'faccode', |
---|
[17395] | 153 | 'depcode', 'state','current_session', 'current_level', 'genotype', 'bloodgroup') |
---|
[16390] | 154 | title = 'Medical Questionnaire Data' |
---|
| 155 | |
---|
| 156 | def mangle_value(self, value, name, context=None): |
---|
| 157 | """The mangler determines the titles of faculty, department |
---|
| 158 | and certificate. It also computes the path of passport image file |
---|
| 159 | stored in the filesystem. |
---|
| 160 | """ |
---|
| 161 | if context is not None: |
---|
| 162 | student = context.student |
---|
| 163 | if name in ('student_id','display_fullname', |
---|
| 164 | 'matric_number', 'faccode', |
---|
| 165 | 'depcode', 'state','current_session', |
---|
[17395] | 166 | 'current_level', |
---|
| 167 | 'genotype', 'bloodgroup') and student is not None: |
---|
[16390] | 168 | value = getattr(student, name, None) |
---|
| 169 | return super( |
---|
| 170 | MedicalHistoryExporter, self).mangle_value( |
---|
| 171 | value, name, context=context) |
---|
[17396] | 172 | |
---|
| 173 | |
---|
| 174 | class NYSCExporter(SchoolFeePaymentsOverviewExporter): |
---|
| 175 | """ |
---|
| 176 | """ |
---|
| 177 | grok.name('nysc') |
---|
| 178 | curr_year = datetime.now().year |
---|
| 179 | year_range = range(curr_year - 11, curr_year + 1) |
---|
| 180 | year_range_tuple = tuple([str(year) for year in year_range]) |
---|
| 181 | fields = ('student_id', |
---|
| 182 | 'matric_number', |
---|
| 183 | 'reg_number', |
---|
| 184 | 'firstname', |
---|
| 185 | 'middlename', |
---|
| 186 | 'lastname', |
---|
| 187 | 'sex', |
---|
| 188 | #'email', |
---|
| 189 | #'phone', |
---|
| 190 | 'nationality', |
---|
| 191 | 'date_of_birth', |
---|
| 192 | 'state', |
---|
| 193 | 'current_mode', |
---|
| 194 | 'certcode', |
---|
| 195 | 'faccode', |
---|
| 196 | 'depcode', |
---|
| 197 | 'current_level', |
---|
| 198 | 'current_session', |
---|
| 199 | 'current_verdict', |
---|
| 200 | 'entry_session' |
---|
| 201 | 'faccode', |
---|
| 202 | 'depcode', |
---|
| 203 | 'certcode', |
---|
| 204 | ) + year_range_tuple |
---|
| 205 | title = u'NYSC Indication' |
---|
| 206 | |
---|
| 207 | def filter_func(self, x, **kw): |
---|
| 208 | students = list() |
---|
| 209 | for student in x: |
---|
| 210 | if student.nysc == True: |
---|
| 211 | students.append(student) |
---|
| 212 | return students |
---|