Ignore:
Timestamp:
27 Jun 2012, 08:09:19 (12 years ago)
Author:
Henrik Bettermann
Message:

Merged with waeup.uniben 8820:HEAD.

Location:
main/waeup.aaue/trunk/src/waeup/aaue
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue

  • main/waeup.aaue/trunk/src/waeup/aaue/students/interfaces.py

    r8805 r8823  
    2929from waeup.kofa.students.vocabularies import (
    3030    nats_vocab, contextual_reg_num_source)
    31 from waeup.aaue.interfaces import (
     31from kofacustom.nigeria.interfaces import (
    3232    high_qual, high_grade, exam_types, LGASource)
    3333from waeup.aaue.interfaces import MessageFactory as _
  • main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py

    r8775 r8823  
    2020from zope.component import createObject
    2121from waeup.kofa.interfaces import CLEARED, RETURNING, PAID
    22 from waeup.kofa.students.utils import StudentsUtils
    23 from waeup.kofa.students.interfaces import IStudentsUtils
     22from kofacustom.nigeria.students.utils import NigeriaStudentsUtils
    2423from waeup.kofa.accesscodes import create_accesscode
    2524from waeup.aaue.interfaces import MessageFactory as _
    2625
    27 class CustomStudentsUtils(StudentsUtils):
     26class CustomStudentsUtils(NigeriaStudentsUtils):
    2827    """A collection of customized methods.
    2928
    3029    """
    31     grok.implements(IStudentsUtils)
    3230
    3331    def getReturningData(self, student):
     
    155153        return None, payment
    156154
    157     VERDICTS_DICT = {
    158         'NY': 'not yet',
    159         'A': 'Successful student',
    160         'B': 'Student with carryover courses',
    161         'C': 'Student on probation',
    162         'D': 'Withdrawn from the faculty',
    163         'E': 'Student who were previously on probation',
    164         'F': 'Medical case',
    165         'G': 'Absent from examination',
    166         'H': 'Withheld results',
    167         'I': 'Expelled/rusticated/suspended student',
    168         'J': 'Temporary withdrawn from the university',
    169         'K': 'Unregistered student',
    170         'L': 'Referred student',
    171         'M': 'Reinstatement',
    172         'N': 'Student on transfer',
    173         'O': 'NCE-III repeater',
    174         'Y': 'No previous verdict',
    175         'X': 'New 300 level student',
    176         'Z': 'Successful student (provisional)',
    177         'A1': 'First Class',
    178         'A2': 'Second Class Upper',
    179         'A3': 'Second Class Lower',
    180         'A4': 'Third Class',
    181         'A5': 'Pass',
    182         'A6': 'Distinction',
    183         'A7': 'Credit',
    184         'A8': 'Merit',
    185         }
    186 
    187     # AAUE separators
    188     SEPARATORS_DICT = {
    189         'form.fst_sit_fname': _(u'First Sitting Record'),
    190         'form.scd_sit_fname': _(u'Second Sitting Record'),
    191         'form.alr_fname': _(u'Advanced Level Record'),
    192         'form.hq_type': _(u'Higher Education Record'),
    193         'form.hq2_type': _(u'Second Higher Education Record'),
    194         'form.nysc_year': _(u'NYSC Information'),
    195         'form.employer': _(u'Employment History'),
    196         'form.former_matric': _(u'Former AAUE Student'),
    197         }
    198 
    199155    # AAUE prefix
    200156    STUDENT_ID_PREFIX = u'E'
Note: See TracChangeset for help on using the changeset viewer.