- Timestamp:
- 27 Jun 2012, 09:48:53 (12 years ago)
- Location:
- main/waeup.fceokene/trunk/src/waeup/fceokene
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene
- Property svn:mergeinfo changed
/main/waeup.futminna/trunk/src/waeup/futminna (added) merged: 8833 /main/waeup.uniben/trunk/src/waeup/uniben merged: 8821
- Property svn:mergeinfo changed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/students/utils.py
r8713 r8834 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.fceokene.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): … … 122 120 return None, payment 123 121 124 VERDICTS_DICT = {125 'NY': 'not yet',126 'A': 'Successful student',127 'B': 'Student with carryover courses',128 'C': 'Student on probation',129 'D': 'Withdrawn from the faculty',130 'E': 'Student who were previously on probation',131 'F': 'Medical case',132 'G': 'Absent from examination',133 'H': 'Withheld results',134 'I': 'Expelled/rusticated/suspended student',135 'J': 'Temporary withdrawn from the university',136 'K': 'Unregistered student',137 'L': 'Referred student',138 'M': 'Reinstatement',139 'N': 'Student on transfer',140 'O': 'NCE-III repeater',141 'Y': 'No previous verdict',142 'X': 'New 300 level student',143 'Z': 'Successful student (provisional)',144 'A1': 'First Class',145 'A2': 'Second Class Upper',146 'A3': 'Second Class Lower',147 'A4': 'Third Class',148 'A5': 'Pass',149 'A6': 'Distinction',150 'A7': 'Credit',151 'A8': 'Merit',152 }153 154 # FCEOkene separators155 SEPARATORS_DICT = {156 'form.fst_sit_fname': _(u'First Sitting Record'),157 'form.scd_sit_fname': _(u'Second Sitting Record'),158 'form.alr_fname': _(u'Advanced Level Record'),159 'form.hq_type': _(u'Higher Education Record'),160 'form.hq2_type': _(u'Second Higher Education Record'),161 'form.nysc_year': _(u'NYSC Information'),162 'form.employer': _(u'Employment History'),163 'form.former_matric': _(u'Former FCEOkene Student'),164 }165 166 122 # FCEOkene prefix 167 123 STUDENT_ID_PREFIX = u'K'
Note: See TracChangeset for help on using the changeset viewer.