[8911] | 1 | ## $Id: browser.py 13523 2015-12-02 12:01:00Z 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 |
---|
| 19 | from zope.i18n import translate |
---|
[9914] | 20 | from zope.component import getUtility |
---|
[13523] | 21 | from zope.security import checkPermission |
---|
[13351] | 22 | from zope.formlib.textwidgets import BytesDisplayWidget |
---|
[11597] | 23 | from waeup.kofa.browser.layout import UtilityView |
---|
[8911] | 24 | from waeup.kofa.widgets.datewidget import FriendlyDatetimeDisplayWidget |
---|
[9914] | 25 | from waeup.kofa.interfaces import IKofaUtils |
---|
[11597] | 26 | from waeup.kofa.students.interfaces import IStudentsUtils, IStudent |
---|
[13038] | 27 | from waeup.kofa.students.workflow import PAID, REGISTERED |
---|
[9914] | 28 | from waeup.kofa.students.browser import ( |
---|
[11846] | 29 | StartClearancePage, |
---|
[9914] | 30 | StudentBasePDFFormPage, |
---|
| 31 | CourseTicketAddFormPage, |
---|
| 32 | StudyLevelDisplayFormPage, |
---|
[13059] | 33 | ExportPDFTranscriptSlip, |
---|
| 34 | ExportPDFAdmissionSlip, |
---|
[13353] | 35 | BedTicketAddPage, |
---|
[13380] | 36 | StudentFilesUploadPage, |
---|
[13523] | 37 | PaymentsManageFormPage, |
---|
[10269] | 38 | ) |
---|
[8911] | 39 | from kofacustom.nigeria.students.browser import ( |
---|
| 40 | NigeriaOnlinePaymentDisplayFormPage, |
---|
| 41 | NigeriaOnlinePaymentAddFormPage, |
---|
[13059] | 42 | NigeriaExportPDFPaymentSlip, |
---|
| 43 | NigeriaExportPDFCourseRegistrationSlip, |
---|
| 44 | NigeriaExportPDFClearanceSlip, |
---|
[13351] | 45 | NigeriaStudentPersonalDisplayFormPage, |
---|
| 46 | NigeriaStudentPersonalEditFormPage, |
---|
| 47 | NigeriaStudentPersonalManageFormPage, |
---|
[13362] | 48 | NigeriaStudentClearanceEditFormPage, |
---|
[13462] | 49 | NigeriaAccommodationManageFormPage, |
---|
[10269] | 50 | ) |
---|
[9496] | 51 | from waeup.aaue.students.interfaces import ( |
---|
[9914] | 52 | ICustomStudentOnlinePayment, |
---|
[11607] | 53 | ICustomStudentStudyLevel, |
---|
[13351] | 54 | ICustomStudent, |
---|
| 55 | ICustomStudentPersonal, |
---|
[13362] | 56 | ICustomStudentPersonalEdit, |
---|
| 57 | ICustomUGStudentClearance) |
---|
[13414] | 58 | from waeup.aaue.interswitch.browser import gateway_net_amt |
---|
[9914] | 59 | from waeup.aaue.interfaces import MessageFactory as _ |
---|
[8911] | 60 | |
---|
[13351] | 61 | class CustomStudentPersonalDisplayFormPage(NigeriaStudentPersonalDisplayFormPage): |
---|
| 62 | """ Page to display student personal data |
---|
| 63 | """ |
---|
| 64 | form_fields = grok.AutoFields(ICustomStudentPersonal) |
---|
| 65 | form_fields['perm_address'].custom_widget = BytesDisplayWidget |
---|
| 66 | form_fields['father_address'].custom_widget = BytesDisplayWidget |
---|
| 67 | form_fields['mother_address'].custom_widget = BytesDisplayWidget |
---|
| 68 | form_fields['next_kin_address'].custom_widget = BytesDisplayWidget |
---|
| 69 | form_fields[ |
---|
| 70 | 'personal_updated'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 71 | |
---|
| 72 | class CustomStudentPersonalEditFormPage(NigeriaStudentPersonalEditFormPage): |
---|
| 73 | """ Page to edit personal data |
---|
| 74 | """ |
---|
| 75 | form_fields = grok.AutoFields(ICustomStudentPersonalEdit).omit('personal_updated') |
---|
| 76 | |
---|
| 77 | class CustomStudentPersonalManageFormPage(NigeriaStudentPersonalManageFormPage): |
---|
| 78 | """ Page to edit personal data |
---|
| 79 | """ |
---|
| 80 | form_fields = grok.AutoFields(ICustomStudentPersonal) |
---|
| 81 | form_fields['personal_updated'].for_display = True |
---|
| 82 | form_fields[ |
---|
| 83 | 'personal_updated'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 84 | |
---|
[13362] | 85 | class CustomStudentClearanceEditFormPage(NigeriaStudentClearanceEditFormPage): |
---|
| 86 | """ View to edit student clearance data by student |
---|
| 87 | """ |
---|
| 88 | |
---|
| 89 | @property |
---|
| 90 | def form_fields(self): |
---|
| 91 | if self.context.is_postgrad: |
---|
| 92 | form_fields = grok.AutoFields(ICustomPGStudentClearance).omit( |
---|
| 93 | 'clearance_locked', 'nysc_location', 'clr_code', 'officer_comment', |
---|
| 94 | 'physical_clearance_date') |
---|
| 95 | else: |
---|
| 96 | form_fields = grok.AutoFields(ICustomUGStudentClearance).omit( |
---|
| 97 | 'clearance_locked', 'clr_code', 'officer_comment', |
---|
| 98 | 'physical_clearance_date') |
---|
| 99 | return form_fields |
---|
| 100 | |
---|
[11846] | 101 | class CustomStartClearancePage(StartClearancePage): |
---|
[13360] | 102 | with_ac = False |
---|
[11846] | 103 | |
---|
[13351] | 104 | @property |
---|
| 105 | def all_required_fields_filled(self): |
---|
| 106 | if not self.context.email: |
---|
| 107 | return _("Email address is missing."), 'edit_base' |
---|
| 108 | if not self.context.phone: |
---|
| 109 | return _("Phone number is missing."), 'edit_base' |
---|
| 110 | if not self.context.father_name: |
---|
| 111 | return _("Personal data form is not properly filled."), 'edit_personal' |
---|
| 112 | return |
---|
| 113 | |
---|
[8911] | 114 | class CustomOnlinePaymentDisplayFormPage(NigeriaOnlinePaymentDisplayFormPage): |
---|
| 115 | """ Page to view an online payment ticket |
---|
| 116 | """ |
---|
| 117 | grok.context(ICustomStudentOnlinePayment) |
---|
[9853] | 118 | form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit( |
---|
[9990] | 119 | 'provider_amt', 'gateway_amt', 'thirdparty_amt', 'p_item') |
---|
[8911] | 120 | form_fields[ |
---|
| 121 | 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 122 | form_fields[ |
---|
| 123 | 'payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 124 | |
---|
| 125 | class CustomOnlinePaymentAddFormPage(NigeriaOnlinePaymentAddFormPage): |
---|
| 126 | """ Page to add an online payment ticket |
---|
| 127 | """ |
---|
| 128 | form_fields = grok.AutoFields(ICustomStudentOnlinePayment).select( |
---|
| 129 | 'p_category') |
---|
| 130 | |
---|
[13523] | 131 | class CustomPaymentsManageFormPage(PaymentsManageFormPage): |
---|
| 132 | """ Page to manage the student payments. |
---|
| 133 | |
---|
| 134 | This manage form page is for both students and students officers. |
---|
| 135 | """ |
---|
| 136 | @property |
---|
| 137 | def manage_payments_allowed(self): |
---|
| 138 | return checkPermission('waeup.manageStudent', self.context) |
---|
| 139 | |
---|
[13059] | 140 | class CustomExportPDFPaymentSlip(NigeriaExportPDFPaymentSlip): |
---|
[8911] | 141 | """Deliver a PDF slip of the context. |
---|
| 142 | """ |
---|
| 143 | grok.context(ICustomStudentOnlinePayment) |
---|
[9853] | 144 | form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit( |
---|
[9990] | 145 | 'provider_amt', 'gateway_amt', 'thirdparty_amt', 'p_item') |
---|
[8911] | 146 | form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[9496] | 147 | form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[9914] | 148 | |
---|
[11625] | 149 | @property |
---|
| 150 | def note(self): |
---|
[13408] | 151 | p_session = self.context.p_session |
---|
[13405] | 152 | try: |
---|
[13408] | 153 | academic_session = grok.getSite()['configuration'][str(p_session)] |
---|
[13405] | 154 | except KeyError: |
---|
| 155 | academic_session = None |
---|
[13425] | 156 | text = '\n\n The Amount Authorized is inclusive of: ' |
---|
[13512] | 157 | if self.context.p_category in ('schoolfee_incl', 'schoolfee_1') \ |
---|
| 158 | and academic_session: |
---|
[13414] | 159 | welfare_fee = gateway_net_amt(academic_session.welfare_fee) |
---|
| 160 | union_fee = gateway_net_amt(academic_session.union_fee) |
---|
[13437] | 161 | text += ('School Fee, ' |
---|
[13463] | 162 | '%s Naira Student Union Dues, ' |
---|
[13437] | 163 | '%s Naira Student Welfare Assurance Fee and ' |
---|
[13425] | 164 | % (union_fee, welfare_fee)) |
---|
[13410] | 165 | elif self.context.p_category in ( |
---|
| 166 | 'clearance_incl', 'clearance_medical_incl') and academic_session: |
---|
[13414] | 167 | matric_gown_fee = gateway_net_amt(academic_session.matric_gown_fee) |
---|
| 168 | lapel_fee = gateway_net_amt(academic_session.lapel_fee) |
---|
[13437] | 169 | text += ('Acceptance Fee, ' |
---|
| 170 | '%s Naira Matriculation Gown Fee, ' |
---|
| 171 | '%s Naira Lapel/File Fee and ' |
---|
[13408] | 172 | % (matric_gown_fee, lapel_fee)) |
---|
[13437] | 173 | return text + '250.0 Naira Transaction Charge.' |
---|
[11625] | 174 | |
---|
[9914] | 175 | class CustomStudyLevelDisplayFormPage(StudyLevelDisplayFormPage): |
---|
| 176 | """ Page to display student study levels |
---|
| 177 | """ |
---|
| 178 | grok.context(ICustomStudentStudyLevel) |
---|
[10480] | 179 | form_fields = grok.AutoFields(ICustomStudentStudyLevel).omit( |
---|
[12876] | 180 | 'total_credits', 'gpa', 'level') |
---|
[9914] | 181 | form_fields[ |
---|
| 182 | 'validation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 183 | |
---|
[13059] | 184 | class CustomExportPDFCourseRegistrationSlip( |
---|
| 185 | NigeriaExportPDFCourseRegistrationSlip): |
---|
[9914] | 186 | """Deliver a PDF slip of the context. |
---|
| 187 | """ |
---|
| 188 | grok.context(ICustomStudentStudyLevel) |
---|
| 189 | form_fields = grok.AutoFields(ICustomStudentStudyLevel).omit( |
---|
[10102] | 190 | 'level_session', 'level_verdict', |
---|
[12876] | 191 | 'validated_by', 'validation_date', 'gpa', 'level') |
---|
[9914] | 192 | |
---|
[10269] | 193 | omit_fields = ('password', 'suspended', 'suspended_comment', |
---|
[10689] | 194 | 'phone', 'adm_code', 'sex', 'email', 'date_of_birth', |
---|
[11538] | 195 | 'department', 'current_mode', 'current_level') |
---|
[10269] | 196 | |
---|
[13038] | 197 | def update(self): |
---|
| 198 | if self.context.student.state != REGISTERED \ |
---|
[13051] | 199 | and self.context.student.current_level == self.context.level: |
---|
[13038] | 200 | self.flash(_('Forbidden'), type="warning") |
---|
| 201 | self.redirect(self.url(self.context)) |
---|
| 202 | |
---|
[9914] | 203 | @property |
---|
| 204 | def label(self): |
---|
| 205 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 206 | lang = self.request.cookies.get('kofa.language', portal_language) |
---|
| 207 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
| 208 | target_language=lang) |
---|
| 209 | line0 = '' |
---|
| 210 | if self.context.student.current_mode.endswith('_pt'): |
---|
| 211 | line0 = 'DIRECTORATE OF PART-TIME DEGREE PROGRAMMES\n' |
---|
| 212 | line1 = translate(_('Course Registration Slip'), |
---|
| 213 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 214 | + ' %s' % level_title |
---|
| 215 | line2 = translate(_('Session'), |
---|
| 216 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 217 | + ' %s' % self.context.getSessionString |
---|
| 218 | return '%s%s\n%s' % (line0, line1, line2) |
---|
| 219 | |
---|
| 220 | @property |
---|
| 221 | def title(self): |
---|
| 222 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 223 | return translate(_('Units Registered'), 'waeup.kofa', |
---|
| 224 | target_language=portal_language) |
---|
| 225 | |
---|
| 226 | def _signatures(self): |
---|
[9968] | 227 | return ( |
---|
| 228 | [('I have selected the course on the advise of my Head of ' |
---|
| 229 | 'Department. <br>', _('Student\'s Signature'), '<br>')], |
---|
| 230 | [('This student has satisfied the department\'s requirements. ' |
---|
| 231 | 'I recommend to approve the course registration. <br>', |
---|
| 232 | _('Head of Department\'s Signature'), '<br>')], |
---|
| 233 | [('' , _('Principal Assistant Registrar\'s Signature'), '<br>')], |
---|
| 234 | [('', _('Director\'s Signature'))] |
---|
| 235 | ) |
---|
[9914] | 236 | |
---|
| 237 | def render(self): |
---|
| 238 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 239 | Sem = translate('Sem.', 'waeup.kofa', target_language=portal_language) |
---|
| 240 | Code = translate('Code', 'waeup.kofa', target_language=portal_language) |
---|
| 241 | Title = translate('Title', 'waeup.kofa', target_language=portal_language) |
---|
| 242 | Cred = translate('Cred.', 'waeup.kofa', target_language=portal_language) |
---|
| 243 | Score = translate('Score', 'waeup.kofa', target_language=portal_language) |
---|
| 244 | Grade = translate('Grade', 'waeup.kofa', target_language=portal_language) |
---|
[10269] | 245 | Signature = translate(_('Lecturer\'s Signature'), 'waeup.aaue', |
---|
[9914] | 246 | target_language=portal_language) |
---|
| 247 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
| 248 | self.request, self.omit_fields) |
---|
| 249 | students_utils = getUtility(IStudentsUtils) |
---|
[10442] | 250 | |
---|
| 251 | tabledata = [] |
---|
| 252 | tableheader = [] |
---|
| 253 | contenttitle = [] |
---|
| 254 | for i in range(1,7): |
---|
| 255 | tabledata.append(sorted( |
---|
| 256 | [value for value in self.context.values() if value.semester == i], |
---|
| 257 | key=lambda value: str(value.semester) + value.code)) |
---|
| 258 | tableheader.append([(Code,'code', 2.0), |
---|
| 259 | (Title,'title', 7), |
---|
| 260 | (Cred, 'credits', 1.5), |
---|
| 261 | (Score, 'score', 1.4), |
---|
| 262 | (Grade, 'grade', 1.4), |
---|
| 263 | (Signature, 'dummy', 3), |
---|
| 264 | ]) |
---|
[9914] | 265 | if len(self.label.split('\n')) == 3: |
---|
| 266 | topMargin = 1.9 |
---|
| 267 | elif len(self.label.split('\n')) == 2: |
---|
| 268 | topMargin = 1.7 |
---|
| 269 | else: |
---|
| 270 | topMargin = 1.5 |
---|
| 271 | return students_utils.renderPDF( |
---|
| 272 | self, 'course_registration_slip.pdf', |
---|
| 273 | self.context.student, studentview, |
---|
[10442] | 274 | tableheader=tableheader, |
---|
| 275 | tabledata=tabledata, |
---|
[9914] | 276 | signatures=self._signatures(), |
---|
[10269] | 277 | topMargin=topMargin, |
---|
| 278 | omit_fields=self.omit_fields |
---|
[9914] | 279 | ) |
---|
[10566] | 280 | |
---|
[13059] | 281 | class CustomExportPDFTranscriptSlip(ExportPDFTranscriptSlip): |
---|
[10566] | 282 | """Deliver a PDF slip of the context. |
---|
| 283 | """ |
---|
| 284 | |
---|
| 285 | def _sigsInFooter(self): |
---|
| 286 | return [] |
---|
| 287 | |
---|
| 288 | def _signatures(self): |
---|
| 289 | return ([( |
---|
[11555] | 290 | 'Akhimien Felicia O. (MANUPA) <br /> Principal Assistant Registrar <br /> ' |
---|
| 291 | 'Exams, Records and Data Processing Division <br /> For: Registrar')],) |
---|
[10922] | 292 | |
---|
[13059] | 293 | class CustomExportPDFAdmissionSlip(ExportPDFAdmissionSlip): |
---|
[10922] | 294 | """Deliver a PDF Admission slip. |
---|
| 295 | """ |
---|
| 296 | |
---|
| 297 | @property |
---|
| 298 | def label(self): |
---|
| 299 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 300 | return translate(_('e-Admission Slip \n'), |
---|
| 301 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 302 | + ' %s' % self.context.display_fullname |
---|
[11597] | 303 | |
---|
[13059] | 304 | class CustomExportPDFClearanceSlip(NigeriaExportPDFClearanceSlip): |
---|
[11606] | 305 | """Deliver a PDF slip of the context. |
---|
| 306 | """ |
---|
| 307 | |
---|
| 308 | @property |
---|
| 309 | def label(self): |
---|
| 310 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 311 | return translate(_('Clearance Slip\n'), |
---|
| 312 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 313 | + ' %s' % self.context.display_fullname |
---|
| 314 | |
---|
[11597] | 315 | class StudentGetMatricNumberPage(UtilityView, grok.View): |
---|
| 316 | """ Construct and set the matriculation number. |
---|
| 317 | """ |
---|
| 318 | grok.context(IStudent) |
---|
| 319 | grok.name('get_matric_number') |
---|
| 320 | grok.require('waeup.viewStudent') |
---|
| 321 | |
---|
| 322 | def update(self): |
---|
| 323 | students_utils = getUtility(IStudentsUtils) |
---|
| 324 | msg, mnumber = students_utils.setMatricNumber(self.context) |
---|
| 325 | if msg: |
---|
| 326 | self.flash(msg, type="danger") |
---|
| 327 | else: |
---|
| 328 | self.flash(_('Matriculation number %s assigned.' % mnumber)) |
---|
[11602] | 329 | self.context.writeLogMessage(self, '%s assigned' % mnumber) |
---|
[11597] | 330 | self.redirect(self.url(self.context)) |
---|
| 331 | return |
---|
| 332 | |
---|
| 333 | def render(self): |
---|
[11607] | 334 | return |
---|
| 335 | |
---|
[13059] | 336 | class ExportPDFMatricNumberSlip(UtilityView, grok.View): |
---|
[11607] | 337 | """Deliver a PDF notification slip. |
---|
| 338 | """ |
---|
| 339 | grok.context(ICustomStudent) |
---|
| 340 | grok.name('matric_number_slip.pdf') |
---|
| 341 | grok.require('waeup.viewStudent') |
---|
| 342 | prefix = 'form' |
---|
| 343 | |
---|
| 344 | form_fields = grok.AutoFields(ICustomStudent).select( |
---|
| 345 | 'student_id', 'matric_number') |
---|
| 346 | omit_fields = ('date_of_birth', 'current_level') |
---|
| 347 | |
---|
| 348 | @property |
---|
[13489] | 349 | def title(self): |
---|
| 350 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 351 | return translate(_('Matriculation Number'), 'waeup.kofa', |
---|
| 352 | target_language=portal_language) |
---|
| 353 | |
---|
| 354 | @property |
---|
[11607] | 355 | def label(self): |
---|
| 356 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 357 | return translate(_('Matriculation Number Slip\n'), |
---|
| 358 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 359 | + ' %s' % self.context.display_fullname |
---|
| 360 | |
---|
| 361 | def render(self): |
---|
| 362 | if self.context.state not in (PAID,) or not self.context.is_fresh \ |
---|
| 363 | or not self.context.matric_number: |
---|
| 364 | self.flash('Not allowed.', type="danger") |
---|
| 365 | self.redirect(self.url(self.context)) |
---|
| 366 | return |
---|
| 367 | students_utils = getUtility(IStudentsUtils) |
---|
[11609] | 368 | pre_text = _('Congratulations! Your acceptance fee and school fees ' + |
---|
| 369 | 'payments have been received and your matriculation ' + |
---|
| 370 | 'number generated with details as follows.') |
---|
[11607] | 371 | return students_utils.renderPDFAdmissionLetter(self, |
---|
| 372 | self.context.student, omit_fields=self.omit_fields, |
---|
[13353] | 373 | pre_text=pre_text, post_text='') |
---|
| 374 | |
---|
[13489] | 375 | class ExportPersonalDataSlip(UtilityView, grok.View): |
---|
| 376 | """Deliver a PDF notification slip. |
---|
| 377 | """ |
---|
| 378 | grok.context(ICustomStudent) |
---|
| 379 | grok.name('personal_data_slip.pdf') |
---|
| 380 | grok.require('waeup.viewStudent') |
---|
| 381 | prefix = 'form' |
---|
| 382 | note = None |
---|
| 383 | |
---|
| 384 | form_fields = grok.AutoFields(ICustomStudentPersonal).omit('personal_updated') |
---|
| 385 | omit_fields = ('suspended', 'suspended_comment', 'adm_code', 'certificate') |
---|
| 386 | |
---|
| 387 | @property |
---|
| 388 | def title(self): |
---|
| 389 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 390 | return translate(_('Personal Data'), 'waeup.kofa', |
---|
| 391 | target_language=portal_language) |
---|
| 392 | |
---|
| 393 | @property |
---|
| 394 | def label(self): |
---|
| 395 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 396 | return translate(_('Personal Data Slip\n'), |
---|
| 397 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 398 | + ' %s' % self.context.display_fullname |
---|
| 399 | |
---|
| 400 | def render(self): |
---|
| 401 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
| 402 | self.request, self.omit_fields) |
---|
| 403 | students_utils = getUtility(IStudentsUtils) |
---|
| 404 | return students_utils.renderPDF(self, 'personal_data_slip.pdf', |
---|
| 405 | self.context.student, studentview, note=self.note, |
---|
| 406 | omit_fields=self.omit_fields) |
---|
| 407 | |
---|
[13462] | 408 | class CustomAccommodationManageFormPage(NigeriaAccommodationManageFormPage): |
---|
| 409 | """ Page to manage bed tickets. |
---|
| 410 | This manage form page is for both students and students officers. |
---|
| 411 | """ |
---|
| 412 | with_hostel_selection = True |
---|
| 413 | |
---|
[13353] | 414 | class CustomBedTicketAddPage(BedTicketAddPage): |
---|
[13360] | 415 | with_ac = False |
---|
[13380] | 416 | |
---|
| 417 | class CustomStudentFilesUploadPage(StudentFilesUploadPage): |
---|
| 418 | """ View to upload files by student. Inherit from same class in |
---|
| 419 | base package, not from kofacustom.nigeria which |
---|
| 420 | requires that no application slip exists. |
---|
| 421 | """ |
---|