[8911] | 1 | ## $Id: browser.py 13966 2016-06-21 10:37:04Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2012 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 | import grok |
---|
[13937] | 19 | import csv |
---|
[13964] | 20 | import textwrap |
---|
[13937] | 21 | from cStringIO import StringIO |
---|
[8911] | 22 | from zope.i18n import translate |
---|
[13900] | 23 | from zope.component import getUtility, queryUtility |
---|
[13523] | 24 | from zope.security import checkPermission |
---|
[13900] | 25 | from zope.catalog.interfaces import ICatalog |
---|
[13351] | 26 | from zope.formlib.textwidgets import BytesDisplayWidget |
---|
[11597] | 27 | from waeup.kofa.browser.layout import UtilityView |
---|
[8911] | 28 | from waeup.kofa.widgets.datewidget import FriendlyDatetimeDisplayWidget |
---|
[13939] | 29 | from waeup.kofa.interfaces import IKofaUtils, academic_sessions_vocab |
---|
[11597] | 30 | from waeup.kofa.students.interfaces import IStudentsUtils, IStudent |
---|
[13038] | 31 | from waeup.kofa.students.workflow import PAID, REGISTERED |
---|
[13964] | 32 | from waeup.kofa.students.studylevel import getGradeWeightFromScore |
---|
[9914] | 33 | from waeup.kofa.students.browser import ( |
---|
[11846] | 34 | StartClearancePage, |
---|
[9914] | 35 | StudentBasePDFFormPage, |
---|
| 36 | CourseTicketAddFormPage, |
---|
| 37 | StudyLevelDisplayFormPage, |
---|
[13834] | 38 | StudyLevelManageFormPage, |
---|
| 39 | StudyLevelEditFormPage, |
---|
[13059] | 40 | ExportPDFTranscriptSlip, |
---|
| 41 | ExportPDFAdmissionSlip, |
---|
[13353] | 42 | BedTicketAddPage, |
---|
[13380] | 43 | StudentFilesUploadPage, |
---|
[13523] | 44 | PaymentsManageFormPage, |
---|
[13770] | 45 | CourseTicketDisplayFormPage, |
---|
| 46 | CourseTicketManageFormPage, |
---|
[13900] | 47 | EditScoresPage, |
---|
| 48 | ExportPDFScoresSlip |
---|
[10269] | 49 | ) |
---|
[8911] | 50 | from kofacustom.nigeria.students.browser import ( |
---|
| 51 | NigeriaOnlinePaymentDisplayFormPage, |
---|
| 52 | NigeriaOnlinePaymentAddFormPage, |
---|
[13059] | 53 | NigeriaExportPDFPaymentSlip, |
---|
| 54 | NigeriaExportPDFCourseRegistrationSlip, |
---|
| 55 | NigeriaExportPDFClearanceSlip, |
---|
[13351] | 56 | NigeriaStudentPersonalDisplayFormPage, |
---|
| 57 | NigeriaStudentPersonalEditFormPage, |
---|
| 58 | NigeriaStudentPersonalManageFormPage, |
---|
[13362] | 59 | NigeriaStudentClearanceEditFormPage, |
---|
[13462] | 60 | NigeriaAccommodationManageFormPage, |
---|
[13795] | 61 | NigeriaStudentBaseDisplayFormPage, |
---|
| 62 | NigeriaStudentBaseManageFormPage |
---|
[10269] | 63 | ) |
---|
[9496] | 64 | from waeup.aaue.students.interfaces import ( |
---|
[9914] | 65 | ICustomStudentOnlinePayment, |
---|
[11607] | 66 | ICustomStudentStudyLevel, |
---|
[13351] | 67 | ICustomStudent, |
---|
| 68 | ICustomStudentPersonal, |
---|
[13362] | 69 | ICustomStudentPersonalEdit, |
---|
[13770] | 70 | ICustomUGStudentClearance, |
---|
[13795] | 71 | ICustomCourseTicket, |
---|
| 72 | ICustomStudentBase) |
---|
[13414] | 73 | from waeup.aaue.interswitch.browser import gateway_net_amt |
---|
[9914] | 74 | from waeup.aaue.interfaces import MessageFactory as _ |
---|
[8911] | 75 | |
---|
[13795] | 76 | class CustomStudentBaseDisplayFormPage(NigeriaStudentBaseDisplayFormPage): |
---|
| 77 | """ Page to display student base data |
---|
| 78 | """ |
---|
| 79 | form_fields = grok.AutoFields(ICustomStudentBase).omit( |
---|
| 80 | 'password', 'suspended', 'suspended_comment', 'flash_notice') |
---|
| 81 | form_fields[ |
---|
| 82 | 'financial_clearance_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 83 | |
---|
| 84 | class CustomStudentBaseManageFormPage(NigeriaStudentBaseManageFormPage): |
---|
| 85 | """ View to manage student base data |
---|
| 86 | """ |
---|
| 87 | form_fields = grok.AutoFields(ICustomStudentBase).omit( |
---|
| 88 | 'student_id', 'adm_code', 'suspended', |
---|
| 89 | 'financially_cleared_by', 'financial_clearance_date') |
---|
| 90 | |
---|
[13351] | 91 | class CustomStudentPersonalDisplayFormPage(NigeriaStudentPersonalDisplayFormPage): |
---|
| 92 | """ Page to display student personal data |
---|
| 93 | """ |
---|
| 94 | form_fields = grok.AutoFields(ICustomStudentPersonal) |
---|
| 95 | form_fields['perm_address'].custom_widget = BytesDisplayWidget |
---|
| 96 | form_fields['father_address'].custom_widget = BytesDisplayWidget |
---|
| 97 | form_fields['mother_address'].custom_widget = BytesDisplayWidget |
---|
| 98 | form_fields['next_kin_address'].custom_widget = BytesDisplayWidget |
---|
| 99 | form_fields[ |
---|
| 100 | 'personal_updated'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 101 | |
---|
| 102 | class CustomStudentPersonalEditFormPage(NigeriaStudentPersonalEditFormPage): |
---|
| 103 | """ Page to edit personal data |
---|
| 104 | """ |
---|
| 105 | form_fields = grok.AutoFields(ICustomStudentPersonalEdit).omit('personal_updated') |
---|
| 106 | |
---|
| 107 | class CustomStudentPersonalManageFormPage(NigeriaStudentPersonalManageFormPage): |
---|
| 108 | """ Page to edit personal data |
---|
| 109 | """ |
---|
| 110 | form_fields = grok.AutoFields(ICustomStudentPersonal) |
---|
| 111 | form_fields['personal_updated'].for_display = True |
---|
| 112 | form_fields[ |
---|
| 113 | 'personal_updated'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 114 | |
---|
[13362] | 115 | class CustomStudentClearanceEditFormPage(NigeriaStudentClearanceEditFormPage): |
---|
| 116 | """ View to edit student clearance data by student |
---|
| 117 | """ |
---|
| 118 | |
---|
| 119 | @property |
---|
| 120 | def form_fields(self): |
---|
| 121 | if self.context.is_postgrad: |
---|
| 122 | form_fields = grok.AutoFields(ICustomPGStudentClearance).omit( |
---|
| 123 | 'clearance_locked', 'nysc_location', 'clr_code', 'officer_comment', |
---|
| 124 | 'physical_clearance_date') |
---|
| 125 | else: |
---|
| 126 | form_fields = grok.AutoFields(ICustomUGStudentClearance).omit( |
---|
| 127 | 'clearance_locked', 'clr_code', 'officer_comment', |
---|
| 128 | 'physical_clearance_date') |
---|
| 129 | return form_fields |
---|
| 130 | |
---|
[11846] | 131 | class CustomStartClearancePage(StartClearancePage): |
---|
[13360] | 132 | with_ac = False |
---|
[11846] | 133 | |
---|
[13351] | 134 | @property |
---|
| 135 | def all_required_fields_filled(self): |
---|
| 136 | if not self.context.email: |
---|
| 137 | return _("Email address is missing."), 'edit_base' |
---|
| 138 | if not self.context.phone: |
---|
| 139 | return _("Phone number is missing."), 'edit_base' |
---|
| 140 | if not self.context.father_name: |
---|
| 141 | return _("Personal data form is not properly filled."), 'edit_personal' |
---|
| 142 | return |
---|
| 143 | |
---|
[8911] | 144 | class CustomOnlinePaymentDisplayFormPage(NigeriaOnlinePaymentDisplayFormPage): |
---|
| 145 | """ Page to view an online payment ticket |
---|
| 146 | """ |
---|
| 147 | grok.context(ICustomStudentOnlinePayment) |
---|
[9853] | 148 | form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit( |
---|
[9990] | 149 | 'provider_amt', 'gateway_amt', 'thirdparty_amt', 'p_item') |
---|
[8911] | 150 | form_fields[ |
---|
| 151 | 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 152 | form_fields[ |
---|
| 153 | 'payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 154 | |
---|
| 155 | class CustomOnlinePaymentAddFormPage(NigeriaOnlinePaymentAddFormPage): |
---|
| 156 | """ Page to add an online payment ticket |
---|
| 157 | """ |
---|
| 158 | form_fields = grok.AutoFields(ICustomStudentOnlinePayment).select( |
---|
| 159 | 'p_category') |
---|
| 160 | |
---|
[13523] | 161 | class CustomPaymentsManageFormPage(PaymentsManageFormPage): |
---|
| 162 | """ Page to manage the student payments. |
---|
| 163 | |
---|
| 164 | This manage form page is for both students and students officers. |
---|
| 165 | """ |
---|
| 166 | @property |
---|
| 167 | def manage_payments_allowed(self): |
---|
| 168 | return checkPermission('waeup.manageStudent', self.context) |
---|
| 169 | |
---|
[13059] | 170 | class CustomExportPDFPaymentSlip(NigeriaExportPDFPaymentSlip): |
---|
[8911] | 171 | """Deliver a PDF slip of the context. |
---|
| 172 | """ |
---|
| 173 | grok.context(ICustomStudentOnlinePayment) |
---|
[9853] | 174 | form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit( |
---|
[9990] | 175 | 'provider_amt', 'gateway_amt', 'thirdparty_amt', 'p_item') |
---|
[8911] | 176 | form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[9496] | 177 | form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[9914] | 178 | |
---|
[11625] | 179 | @property |
---|
| 180 | def note(self): |
---|
[13408] | 181 | p_session = self.context.p_session |
---|
[13405] | 182 | try: |
---|
[13408] | 183 | academic_session = grok.getSite()['configuration'][str(p_session)] |
---|
[13405] | 184 | except KeyError: |
---|
| 185 | academic_session = None |
---|
[13425] | 186 | text = '\n\n The Amount Authorized is inclusive of: ' |
---|
[13512] | 187 | if self.context.p_category in ('schoolfee_incl', 'schoolfee_1') \ |
---|
| 188 | and academic_session: |
---|
[13414] | 189 | welfare_fee = gateway_net_amt(academic_session.welfare_fee) |
---|
| 190 | union_fee = gateway_net_amt(academic_session.union_fee) |
---|
[13437] | 191 | text += ('School Fee, ' |
---|
[13463] | 192 | '%s Naira Student Union Dues, ' |
---|
[13437] | 193 | '%s Naira Student Welfare Assurance Fee and ' |
---|
[13425] | 194 | % (union_fee, welfare_fee)) |
---|
[13410] | 195 | elif self.context.p_category in ( |
---|
| 196 | 'clearance_incl', 'clearance_medical_incl') and academic_session: |
---|
[13414] | 197 | matric_gown_fee = gateway_net_amt(academic_session.matric_gown_fee) |
---|
| 198 | lapel_fee = gateway_net_amt(academic_session.lapel_fee) |
---|
[13437] | 199 | text += ('Acceptance Fee, ' |
---|
| 200 | '%s Naira Matriculation Gown Fee, ' |
---|
| 201 | '%s Naira Lapel/File Fee and ' |
---|
[13408] | 202 | % (matric_gown_fee, lapel_fee)) |
---|
[13437] | 203 | return text + '250.0 Naira Transaction Charge.' |
---|
[11625] | 204 | |
---|
[9914] | 205 | class CustomStudyLevelDisplayFormPage(StudyLevelDisplayFormPage): |
---|
| 206 | """ Page to display student study levels |
---|
| 207 | """ |
---|
| 208 | grok.context(ICustomStudentStudyLevel) |
---|
[10480] | 209 | form_fields = grok.AutoFields(ICustomStudentStudyLevel).omit( |
---|
[12876] | 210 | 'total_credits', 'gpa', 'level') |
---|
[9914] | 211 | form_fields[ |
---|
| 212 | 'validation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 213 | |
---|
[13834] | 214 | class CustomStudyLevelManageFormPage(StudyLevelManageFormPage): |
---|
| 215 | """ Page to edit the student study level data |
---|
| 216 | """ |
---|
| 217 | grok.context(ICustomStudentStudyLevel) |
---|
| 218 | |
---|
| 219 | class CustomStudyLevelEditFormPage(StudyLevelEditFormPage): |
---|
| 220 | """ Page to edit the student study level data by students |
---|
| 221 | """ |
---|
| 222 | grok.context(ICustomStudentStudyLevel) |
---|
| 223 | |
---|
[13059] | 224 | class CustomExportPDFCourseRegistrationSlip( |
---|
| 225 | NigeriaExportPDFCourseRegistrationSlip): |
---|
[9914] | 226 | """Deliver a PDF slip of the context. |
---|
| 227 | """ |
---|
| 228 | grok.context(ICustomStudentStudyLevel) |
---|
| 229 | form_fields = grok.AutoFields(ICustomStudentStudyLevel).omit( |
---|
[10102] | 230 | 'level_session', 'level_verdict', |
---|
[12876] | 231 | 'validated_by', 'validation_date', 'gpa', 'level') |
---|
[9914] | 232 | |
---|
[10269] | 233 | omit_fields = ('password', 'suspended', 'suspended_comment', |
---|
[10689] | 234 | 'phone', 'adm_code', 'sex', 'email', 'date_of_birth', |
---|
[13713] | 235 | 'department', 'current_mode', 'current_level', 'flash_notice') |
---|
[10269] | 236 | |
---|
[13038] | 237 | def update(self): |
---|
| 238 | if self.context.student.state != REGISTERED \ |
---|
[13051] | 239 | and self.context.student.current_level == self.context.level: |
---|
[13038] | 240 | self.flash(_('Forbidden'), type="warning") |
---|
| 241 | self.redirect(self.url(self.context)) |
---|
| 242 | |
---|
[9914] | 243 | @property |
---|
| 244 | def label(self): |
---|
| 245 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 246 | lang = self.request.cookies.get('kofa.language', portal_language) |
---|
| 247 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
| 248 | target_language=lang) |
---|
| 249 | line0 = '' |
---|
[13788] | 250 | if self.context.student.is_postgrad: |
---|
| 251 | line0 = 'SCHOOL OF POSTGRADUATE STUDIES\n' |
---|
| 252 | elif self.context.student.current_mode.endswith('_pt'): |
---|
[9914] | 253 | line0 = 'DIRECTORATE OF PART-TIME DEGREE PROGRAMMES\n' |
---|
[13866] | 254 | line1 = translate(_('Course Registration Slip'), |
---|
| 255 | target_language=portal_language) \ |
---|
[9914] | 256 | + ' %s' % level_title |
---|
[13866] | 257 | line2 = translate(_('Session'), |
---|
| 258 | target_language=portal_language) \ |
---|
[9914] | 259 | + ' %s' % self.context.getSessionString |
---|
| 260 | return '%s%s\n%s' % (line0, line1, line2) |
---|
| 261 | |
---|
| 262 | @property |
---|
| 263 | def title(self): |
---|
| 264 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[13866] | 265 | return translate(_('Units Registered'), target_language=portal_language) |
---|
[9914] | 266 | |
---|
| 267 | def _signatures(self): |
---|
[13647] | 268 | if self.context.student.current_mode.endswith('_pt') \ |
---|
| 269 | or self.context.student.current_mode == 'found': |
---|
| 270 | return ( |
---|
| 271 | [('I have selected the course on the advise of my Head of ' |
---|
| 272 | 'Department. <br>', _('Student\'s Signature'), '<br>')], |
---|
| 273 | [('This student has satisfied the department\'s requirements. ' |
---|
| 274 | 'I recommend to approve the course registration. <br>', |
---|
| 275 | _('Head of Department\'s Signature'), '<br>')], |
---|
[13946] | 276 | [('' , _('Deputy Registrar\'s Signature'), '<br>')], |
---|
[13647] | 277 | [('', _('Director\'s Signature'))] |
---|
| 278 | ) |
---|
| 279 | if self.context.student.current_mode in ( |
---|
| 280 | 'de_ft', 'ug_ft', 'dp_ft', 'transfer'): |
---|
[13649] | 281 | return ([_('Academic Adviser\'s Signature'), |
---|
| 282 | _('Faculty Officer\'s Signature'), |
---|
| 283 | _('Student\'s Signature')],) |
---|
| 284 | |
---|
[13647] | 285 | if self.context.student.current_mode in ('special_pg_ft', 'special_pg_pt'): |
---|
| 286 | return ( |
---|
[13676] | 287 | [('I declare that all items of information supplied above are correct:' , |
---|
[13680] | 288 | _('Student\'s Signature'), '<br>')], |
---|
[13676] | 289 | [('We approved the above registration:', |
---|
[13680] | 290 | _('Major Supervisor (Name / Signature)'), '')], |
---|
| 291 | [('', _('Co-Supervisor (Name / Signature)'), '')], |
---|
[13676] | 292 | [('', _('Head of Department'), '<br>')], |
---|
| 293 | [('The student has satisfied the conditions for renewal of ' |
---|
| 294 | 'registration for graduate school programme in this university:', |
---|
[13680] | 295 | _('Secretary <br /> (School of Postgraduate Studies)'), '')], |
---|
| 296 | [('', _('Dean <br /> (School of Postgraduate Studies)'), '')], |
---|
[13647] | 297 | ) |
---|
| 298 | return None |
---|
[9914] | 299 | |
---|
[13647] | 300 | |
---|
[9914] | 301 | def render(self): |
---|
| 302 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[13866] | 303 | Sem = translate(_('Sem.'), target_language=portal_language) |
---|
| 304 | Code = translate(_('Code'), target_language=portal_language) |
---|
| 305 | Title = translate(_('Title'), target_language=portal_language) |
---|
| 306 | Cred = translate(_('Cred.'), target_language=portal_language) |
---|
| 307 | Score = translate(_('Score'), target_language=portal_language) |
---|
[13880] | 308 | #CA = translate(_('CA'), target_language=portal_language) |
---|
[13866] | 309 | Grade = translate(_('Grade'), target_language=portal_language) |
---|
| 310 | Signature = translate(_('Lecturer\'s Signature'), 'waeup.aaue', |
---|
[9914] | 311 | target_language=portal_language) |
---|
| 312 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
| 313 | self.request, self.omit_fields) |
---|
| 314 | students_utils = getUtility(IStudentsUtils) |
---|
[10442] | 315 | |
---|
| 316 | tabledata = [] |
---|
| 317 | tableheader = [] |
---|
| 318 | contenttitle = [] |
---|
| 319 | for i in range(1,7): |
---|
| 320 | tabledata.append(sorted( |
---|
| 321 | [value for value in self.context.values() if value.semester == i], |
---|
| 322 | key=lambda value: str(value.semester) + value.code)) |
---|
| 323 | tableheader.append([(Code,'code', 2.0), |
---|
| 324 | (Title,'title', 7), |
---|
| 325 | (Cred, 'credits', 1.5), |
---|
| 326 | (Score, 'score', 1.4), |
---|
[13880] | 327 | #(CA, 'ca', 1.4), |
---|
[10442] | 328 | (Grade, 'grade', 1.4), |
---|
| 329 | (Signature, 'dummy', 3), |
---|
| 330 | ]) |
---|
[9914] | 331 | if len(self.label.split('\n')) == 3: |
---|
| 332 | topMargin = 1.9 |
---|
| 333 | elif len(self.label.split('\n')) == 2: |
---|
| 334 | topMargin = 1.7 |
---|
| 335 | else: |
---|
| 336 | topMargin = 1.5 |
---|
| 337 | return students_utils.renderPDF( |
---|
| 338 | self, 'course_registration_slip.pdf', |
---|
| 339 | self.context.student, studentview, |
---|
[10442] | 340 | tableheader=tableheader, |
---|
| 341 | tabledata=tabledata, |
---|
[9914] | 342 | signatures=self._signatures(), |
---|
[10269] | 343 | topMargin=topMargin, |
---|
| 344 | omit_fields=self.omit_fields |
---|
[9914] | 345 | ) |
---|
[10566] | 346 | |
---|
[13059] | 347 | class CustomExportPDFTranscriptSlip(ExportPDFTranscriptSlip): |
---|
[10566] | 348 | """Deliver a PDF slip of the context. |
---|
| 349 | """ |
---|
| 350 | |
---|
| 351 | def _sigsInFooter(self): |
---|
| 352 | return [] |
---|
| 353 | |
---|
| 354 | def _signatures(self): |
---|
| 355 | return ([( |
---|
[11555] | 356 | 'Akhimien Felicia O. (MANUPA) <br /> Principal Assistant Registrar <br /> ' |
---|
| 357 | 'Exams, Records and Data Processing Division <br /> For: Registrar')],) |
---|
[10922] | 358 | |
---|
[13834] | 359 | def render(self): |
---|
| 360 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[13866] | 361 | Term = translate(_('Sem.'), target_language=portal_language) |
---|
| 362 | Code = translate(_('Code'), target_language=portal_language) |
---|
| 363 | Title = translate(_('Title'), target_language=portal_language) |
---|
| 364 | Cred = translate(_('Credits'), target_language=portal_language) |
---|
| 365 | Score = translate(_('Score'), target_language=portal_language) |
---|
| 366 | #CA = translate(_('CA'), target_language=portal_language) |
---|
| 367 | Grade = translate(_('Grade'), target_language=portal_language) |
---|
[13834] | 368 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
| 369 | self.request, self.omit_fields) |
---|
| 370 | students_utils = getUtility(IStudentsUtils) |
---|
| 371 | |
---|
| 372 | tableheader = [(Code,'code', 2.5), |
---|
| 373 | (Title,'title', 7), |
---|
| 374 | (Term, 'semester', 1.5), |
---|
| 375 | (Cred, 'credits', 1.5), |
---|
| 376 | (Score, 'score', 1.5), |
---|
[13863] | 377 | #(CA, 'ca', 1.5), |
---|
[13834] | 378 | (Grade, 'grade', 1.5), |
---|
| 379 | ] |
---|
| 380 | |
---|
| 381 | return students_utils.renderPDFTranscript( |
---|
| 382 | self, 'transcript.pdf', |
---|
| 383 | self.context.student, studentview, |
---|
| 384 | omit_fields=self.omit_fields, |
---|
| 385 | tableheader=tableheader, |
---|
| 386 | signatures=self._signatures(), |
---|
| 387 | sigs_in_footer=self._sigsInFooter(), |
---|
| 388 | ) |
---|
| 389 | |
---|
[13059] | 390 | class CustomExportPDFAdmissionSlip(ExportPDFAdmissionSlip): |
---|
[10922] | 391 | """Deliver a PDF Admission slip. |
---|
| 392 | """ |
---|
| 393 | |
---|
| 394 | @property |
---|
| 395 | def label(self): |
---|
| 396 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[13866] | 397 | return translate(_('e-Admission Slip \n'), |
---|
| 398 | target_language=portal_language) \ |
---|
[10922] | 399 | + ' %s' % self.context.display_fullname |
---|
[11597] | 400 | |
---|
[13059] | 401 | class CustomExportPDFClearanceSlip(NigeriaExportPDFClearanceSlip): |
---|
[11606] | 402 | """Deliver a PDF slip of the context. |
---|
| 403 | """ |
---|
| 404 | |
---|
| 405 | @property |
---|
| 406 | def label(self): |
---|
| 407 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[13866] | 408 | return translate(_('Clearance Slip\n'), |
---|
| 409 | target_language=portal_language) \ |
---|
[11606] | 410 | + ' %s' % self.context.display_fullname |
---|
| 411 | |
---|
[11597] | 412 | class StudentGetMatricNumberPage(UtilityView, grok.View): |
---|
| 413 | """ Construct and set the matriculation number. |
---|
| 414 | """ |
---|
| 415 | grok.context(IStudent) |
---|
| 416 | grok.name('get_matric_number') |
---|
| 417 | grok.require('waeup.viewStudent') |
---|
| 418 | |
---|
| 419 | def update(self): |
---|
| 420 | students_utils = getUtility(IStudentsUtils) |
---|
| 421 | msg, mnumber = students_utils.setMatricNumber(self.context) |
---|
| 422 | if msg: |
---|
| 423 | self.flash(msg, type="danger") |
---|
| 424 | else: |
---|
| 425 | self.flash(_('Matriculation number %s assigned.' % mnumber)) |
---|
[11602] | 426 | self.context.writeLogMessage(self, '%s assigned' % mnumber) |
---|
[11597] | 427 | self.redirect(self.url(self.context)) |
---|
| 428 | return |
---|
| 429 | |
---|
| 430 | def render(self): |
---|
[11607] | 431 | return |
---|
| 432 | |
---|
[13059] | 433 | class ExportPDFMatricNumberSlip(UtilityView, grok.View): |
---|
[11607] | 434 | """Deliver a PDF notification slip. |
---|
| 435 | """ |
---|
| 436 | grok.context(ICustomStudent) |
---|
| 437 | grok.name('matric_number_slip.pdf') |
---|
| 438 | grok.require('waeup.viewStudent') |
---|
| 439 | prefix = 'form' |
---|
| 440 | |
---|
| 441 | form_fields = grok.AutoFields(ICustomStudent).select( |
---|
| 442 | 'student_id', 'matric_number') |
---|
[13713] | 443 | omit_fields = ('date_of_birth', 'current_level', 'flash_notice') |
---|
[11607] | 444 | |
---|
| 445 | @property |
---|
[13489] | 446 | def title(self): |
---|
| 447 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[13866] | 448 | return translate(_('Matriculation Number'), 'waeup.kofa', |
---|
[13489] | 449 | target_language=portal_language) |
---|
| 450 | |
---|
| 451 | @property |
---|
[11607] | 452 | def label(self): |
---|
| 453 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[13866] | 454 | return translate(_('Matriculation Number Slip\n'), |
---|
| 455 | target_language=portal_language) \ |
---|
[11607] | 456 | + ' %s' % self.context.display_fullname |
---|
| 457 | |
---|
| 458 | def render(self): |
---|
| 459 | if self.context.state not in (PAID,) or not self.context.is_fresh \ |
---|
| 460 | or not self.context.matric_number: |
---|
| 461 | self.flash('Not allowed.', type="danger") |
---|
| 462 | self.redirect(self.url(self.context)) |
---|
| 463 | return |
---|
| 464 | students_utils = getUtility(IStudentsUtils) |
---|
[11609] | 465 | pre_text = _('Congratulations! Your acceptance fee and school fees ' + |
---|
| 466 | 'payments have been received and your matriculation ' + |
---|
| 467 | 'number generated with details as follows.') |
---|
[11607] | 468 | return students_utils.renderPDFAdmissionLetter(self, |
---|
| 469 | self.context.student, omit_fields=self.omit_fields, |
---|
[13353] | 470 | pre_text=pre_text, post_text='') |
---|
| 471 | |
---|
[13489] | 472 | class ExportPersonalDataSlip(UtilityView, grok.View): |
---|
| 473 | """Deliver a PDF notification slip. |
---|
| 474 | """ |
---|
| 475 | grok.context(ICustomStudent) |
---|
| 476 | grok.name('personal_data_slip.pdf') |
---|
| 477 | grok.require('waeup.viewStudent') |
---|
| 478 | prefix = 'form' |
---|
| 479 | note = None |
---|
| 480 | |
---|
| 481 | form_fields = grok.AutoFields(ICustomStudentPersonal).omit('personal_updated') |
---|
[13713] | 482 | omit_fields = ('suspended', 'suspended_comment', 'adm_code', |
---|
| 483 | 'certificate', 'flash_notice') |
---|
[13489] | 484 | |
---|
| 485 | @property |
---|
| 486 | def title(self): |
---|
| 487 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[13866] | 488 | return translate(_('Personal Data'), 'waeup.kofa', |
---|
[13489] | 489 | target_language=portal_language) |
---|
| 490 | |
---|
| 491 | @property |
---|
| 492 | def label(self): |
---|
| 493 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[13866] | 494 | return translate(_('Personal Data Slip\n'), |
---|
| 495 | target_language=portal_language) \ |
---|
[13489] | 496 | + ' %s' % self.context.display_fullname |
---|
| 497 | |
---|
| 498 | def render(self): |
---|
| 499 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
| 500 | self.request, self.omit_fields) |
---|
| 501 | students_utils = getUtility(IStudentsUtils) |
---|
| 502 | return students_utils.renderPDF(self, 'personal_data_slip.pdf', |
---|
| 503 | self.context.student, studentview, note=self.note, |
---|
| 504 | omit_fields=self.omit_fields) |
---|
| 505 | |
---|
[13462] | 506 | class CustomAccommodationManageFormPage(NigeriaAccommodationManageFormPage): |
---|
| 507 | """ Page to manage bed tickets. |
---|
| 508 | This manage form page is for both students and students officers. |
---|
| 509 | """ |
---|
| 510 | with_hostel_selection = True |
---|
| 511 | |
---|
[13353] | 512 | class CustomBedTicketAddPage(BedTicketAddPage): |
---|
[13360] | 513 | with_ac = False |
---|
[13380] | 514 | |
---|
| 515 | class CustomStudentFilesUploadPage(StudentFilesUploadPage): |
---|
| 516 | """ View to upload files by student. Inherit from same class in |
---|
| 517 | base package, not from kofacustom.nigeria which |
---|
| 518 | requires that no application slip exists. |
---|
[13770] | 519 | """ |
---|
| 520 | |
---|
| 521 | class CustomCourseTicketDisplayFormPage(CourseTicketDisplayFormPage): |
---|
| 522 | """ Page to display course tickets |
---|
| 523 | """ |
---|
| 524 | form_fields = grok.AutoFields(ICustomCourseTicket) |
---|
| 525 | |
---|
| 526 | class CustomCourseTicketManageFormPage(CourseTicketManageFormPage): |
---|
| 527 | """ Page to manage course tickets |
---|
| 528 | """ |
---|
| 529 | form_fields = grok.AutoFields(ICustomCourseTicket) |
---|
| 530 | form_fields['title'].for_display = True |
---|
| 531 | form_fields['fcode'].for_display = True |
---|
| 532 | form_fields['dcode'].for_display = True |
---|
| 533 | form_fields['semester'].for_display = True |
---|
| 534 | form_fields['passmark'].for_display = True |
---|
| 535 | form_fields['credits'].for_display = True |
---|
| 536 | form_fields['mandatory'].for_display = False |
---|
| 537 | form_fields['automatic'].for_display = True |
---|
| 538 | form_fields['carry_over'].for_display = True |
---|
| 539 | |
---|
| 540 | class CustomEditScoresPage(EditScoresPage): |
---|
| 541 | """Page that filters and lists students. |
---|
| 542 | """ |
---|
| 543 | grok.template('editscorespage') |
---|
| 544 | |
---|
[13937] | 545 | |
---|
| 546 | def _extract_uploadfile(self, uploadfile): |
---|
| 547 | """Get a mapping of student-ids to scores. |
---|
| 548 | |
---|
| 549 | The mapping is constructed by reading contents from `uploadfile`. |
---|
| 550 | |
---|
| 551 | We expect uploadfile to be a regular CSV file with columns |
---|
| 552 | ``student_id``, ``score`` and ``ca`` (other cols are ignored). |
---|
| 553 | """ |
---|
| 554 | result = dict() |
---|
| 555 | data = StringIO(uploadfile.read()) # ensure we have something seekable |
---|
| 556 | reader = csv.DictReader(data) |
---|
| 557 | for row in reader: |
---|
| 558 | if not ('student_id' in row and 'score' in row and 'ca' in row): |
---|
| 559 | continue |
---|
| 560 | result[row['student_id']] = (row['score'], row['ca']) |
---|
| 561 | return result |
---|
| 562 | |
---|
[13770] | 563 | def update(self, *args, **kw): |
---|
| 564 | form = self.request.form |
---|
[13937] | 565 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.', '') |
---|
[13770] | 566 | self.current_academic_session = grok.getSite()[ |
---|
| 567 | 'configuration'].current_academic_session |
---|
| 568 | if self.context.__parent__.__parent__.score_editing_disabled: |
---|
| 569 | self.flash(_('Score editing disabled.'), type="warning") |
---|
| 570 | self.redirect(self.url(self.context)) |
---|
| 571 | return |
---|
| 572 | if not self.current_academic_session: |
---|
| 573 | self.flash(_('Current academic session not set.'), type="warning") |
---|
| 574 | self.redirect(self.url(self.context)) |
---|
| 575 | return |
---|
[13939] | 576 | self.session_title = academic_sessions_vocab.getTerm( |
---|
| 577 | self.current_academic_session).title |
---|
[13770] | 578 | self.tickets = self._searchCatalog(self.current_academic_session) |
---|
| 579 | editable_tickets = [ |
---|
| 580 | ticket for ticket in self.tickets if ticket.editable_by_lecturer] |
---|
| 581 | if not self.tickets: |
---|
| 582 | self.flash(_('No student found.'), type="warning") |
---|
| 583 | self.redirect(self.url(self.context)) |
---|
| 584 | return |
---|
[13937] | 585 | if not 'UPDATE_TABLE' in form and not 'UPDATE_FILE' in form: |
---|
| 586 | return |
---|
| 587 | |
---|
| 588 | if not editable_tickets: |
---|
| 589 | return |
---|
| 590 | if 'UPDATE_FILE' in form: |
---|
| 591 | if form['uploadfile']: |
---|
| 592 | try: |
---|
| 593 | formvals = self._extract_uploadfile(form['uploadfile']) |
---|
| 594 | except: |
---|
| 595 | self.flash( |
---|
| 596 | _('Uploaded file contains illegal data. Ignored'), |
---|
| 597 | type="danger") |
---|
| 598 | return |
---|
| 599 | else: |
---|
| 600 | self.flash( |
---|
| 601 | _('No file provided.'), type="danger") |
---|
[13770] | 602 | return |
---|
[13937] | 603 | else: |
---|
| 604 | formvals = dict(zip(form['sids'], zip(form['scores'], form['cas']))) |
---|
| 605 | error = '' |
---|
| 606 | for ticket in editable_tickets: |
---|
| 607 | ticket_error = False |
---|
| 608 | score = ticket.score |
---|
| 609 | ca = ticket.ca |
---|
| 610 | sid = ticket.student.student_id |
---|
| 611 | if formvals[sid][0] == '': |
---|
| 612 | score = None |
---|
| 613 | if formvals[sid][1] == '': |
---|
| 614 | ca = None |
---|
| 615 | try: |
---|
| 616 | if formvals[sid][0]: |
---|
| 617 | score = int(formvals[sid][0]) |
---|
| 618 | if formvals[sid][1]: |
---|
| 619 | ca = int(formvals[sid][1]) |
---|
| 620 | except ValueError: |
---|
| 621 | error += '%s, ' % ticket.student.display_fullname |
---|
| 622 | ticket_error = True |
---|
| 623 | if not ticket_error and ticket.score != score: |
---|
| 624 | ticket.score = score |
---|
| 625 | ticket.student.__parent__.logger.info( |
---|
| 626 | '%s - %s %s/%s score updated (%s)' % |
---|
| 627 | (ob_class, ticket.student.student_id, |
---|
| 628 | ticket.level, ticket.code, score)) |
---|
| 629 | if not ticket_error and ticket.ca != ca: |
---|
| 630 | ticket.ca = ca |
---|
| 631 | ticket.student.__parent__.logger.info( |
---|
| 632 | '%s - %s %s/%s ca updated (%s)' % |
---|
| 633 | (ob_class, ticket.student.student_id, |
---|
| 634 | ticket.level, ticket.code, ca)) |
---|
| 635 | if error: |
---|
| 636 | self.flash(_('Error: Score(s) and CA(s) of %s have not be updated. ' |
---|
| 637 | 'Only integers are allowed.' % error.strip(', ')), |
---|
| 638 | type="danger") |
---|
[13939] | 639 | return |
---|
| 640 | self.flash(_('You successfully updated course results.')) |
---|
[13900] | 641 | return |
---|
| 642 | |
---|
| 643 | class CustomExportPDFScoresSlip(ExportPDFScoresSlip): |
---|
| 644 | """Deliver a PDF slip of course tickets for a lecturer. |
---|
| 645 | """ |
---|
| 646 | |
---|
| 647 | def table_data(self, session): |
---|
| 648 | cat = queryUtility(ICatalog, name='coursetickets_catalog') |
---|
| 649 | coursetickets = cat.searchResults( |
---|
| 650 | session=(session, session), |
---|
| 651 | code=(self.context.code, self.context.code) |
---|
| 652 | ) |
---|
[13963] | 653 | header = [[_(''), |
---|
| 654 | _('Matric No.'), |
---|
[13900] | 655 | _('Reg. No.'), |
---|
| 656 | _('Fullname'), |
---|
| 657 | _('Status'), |
---|
[13963] | 658 | _('Course of\nStudies'), |
---|
[13900] | 659 | _('Level'), |
---|
[13963] | 660 | _('Exam\nScore'), |
---|
[13964] | 661 | _(' CA '), |
---|
| 662 | _('Total '), |
---|
[13963] | 663 | _('Grade'), |
---|
| 664 | ],] |
---|
[13907] | 665 | tickets = [] |
---|
[13963] | 666 | no = 1 |
---|
[13900] | 667 | for ticket in list(coursetickets): |
---|
[13963] | 668 | if None in (ticket.score, ticket.ca): |
---|
| 669 | total = 'n/a' |
---|
[13964] | 670 | grade = 'n/a' |
---|
[13963] | 671 | else: |
---|
| 672 | total = ticket.score + ticket.ca |
---|
[13964] | 673 | grade = getGradeWeightFromScore(total)[0] |
---|
| 674 | fullname = textwrap.fill(ticket.student.display_fullname, 30) |
---|
[13963] | 675 | row = [no, |
---|
| 676 | ticket.student.matric_number, |
---|
[13900] | 677 | ticket.student.reg_number, |
---|
[13964] | 678 | fullname, |
---|
[13900] | 679 | ticket.student.translated_state, |
---|
| 680 | ticket.student.certcode, |
---|
| 681 | ticket.level, |
---|
[13963] | 682 | ticket.ca, |
---|
[13900] | 683 | ticket.score, |
---|
[13963] | 684 | total, |
---|
[13964] | 685 | grade, |
---|
[13963] | 686 | ] |
---|
[13907] | 687 | tickets.append(row) |
---|
[13963] | 688 | no += 1 |
---|
[13966] | 689 | return header + sorted(tickets, key=lambda value: value[5] + value[3]) |
---|
[13907] | 690 | |
---|