Changeset 8833 for main/waeup.futminna/trunk/src/waeup/futminna/students
- Timestamp:
- 27 Jun 2012, 09:40:35 (13 years ago)
- Location:
- main/waeup.futminna/trunk/src/waeup/futminna
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.futminna/trunk/src/waeup/futminna
- Property svn:mergeinfo changed
/main/waeup.uniben/trunk/src/waeup/uniben merged: 8821
- Property svn:mergeinfo changed
-
main/waeup.futminna/trunk/src/waeup/futminna/students/interfaces.py
r8806 r8833 29 29 from waeup.kofa.students.vocabularies import ( 30 30 nats_vocab, contextual_reg_num_source) 31 from waeup.futminna.interfaces import (31 from kofacustom.nigeria.interfaces import ( 32 32 high_qual, high_grade, exam_types, LGASource) 33 33 from waeup.futminna.interfaces import MessageFactory as _ -
main/waeup.futminna/trunk/src/waeup/futminna/students/utils.py
r8714 r8833 20 20 from zope.component import createObject 21 21 from waeup.kofa.interfaces import CLEARED, RETURNING, PAID 22 from waeup.kofa.students.utils import StudentsUtils 23 from waeup.kofa.students.interfaces import IStudentsUtils 22 from kofacustom.nigeria.students.utils import NigeriaStudentsUtils 24 23 from waeup.kofa.accesscodes import create_accesscode 25 24 from waeup.futminna.interfaces import MessageFactory as _ 26 25 27 class CustomStudentsUtils( StudentsUtils):26 class CustomStudentsUtils(NigeriaStudentsUtils): 28 27 """A collection of customized methods. 29 28 30 29 """ 31 grok.implements(IStudentsUtils)32 30 33 31 def getReturningData(self, student): … … 129 127 return None, payment 130 128 131 VERDICTS_DICT = {132 'NY': 'not yet',133 'A': 'Successful student',134 'B': 'Student with carryover courses',135 'C': 'Student on probation',136 'D': 'Withdrawn from the faculty',137 'E': 'Student who were previously on probation',138 'F': 'Medical case',139 'G': 'Absent from examination',140 'H': 'Withheld results',141 'I': 'Expelled/rusticated/suspended student',142 'J': 'Temporary withdrawn from the university',143 'K': 'Unregistered student',144 'L': 'Referred student',145 'M': 'Reinstatement',146 'N': 'Student on transfer',147 'O': 'NCE-III repeater',148 'Y': 'No previous verdict',149 'X': 'New 300 level student',150 'Z': 'Successful student (provisional)',151 'A1': 'First Class',152 'A2': 'Second Class Upper',153 'A3': 'Second Class Lower',154 'A4': 'Third Class',155 'A5': 'Pass',156 'A6': 'Distinction',157 'A7': 'Credit',158 'A8': 'Merit',159 }160 161 # FUTMinna separators162 SEPARATORS_DICT = {163 'form.fst_sit_fname': _(u'First Sitting Record'),164 'form.scd_sit_fname': _(u'Second Sitting Record'),165 'form.alr_fname': _(u'Advanced Level Record'),166 'form.hq_type': _(u'Higher Education Record'),167 'form.hq2_type': _(u'Second Higher Education Record'),168 'form.nysc_year': _(u'NYSC Information'),169 'form.employer': _(u'Employment History'),170 'form.former_matric': _(u'Former FUTMinna Student'),171 }172 173 129 # FUTMinna prefix 174 130 STUDENT_ID_PREFIX = u'M'
Note: See TracChangeset for help on using the changeset viewer.