Ignore:
Timestamp:
2 Jul 2016, 04:56:31 (8 years ago)
Author:
Henrik Bettermann
Message:

Temporary solution for reopening application in Uniben. This revision has to be reverted when ase application is finished.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/applicants/interfaces.py

    r13945 r14003  
    3232    validate_email,
    3333    SubjectSource,
    34     IKofaUtils)
     34    IKofaUtils,
     35    IKofaObject)
    3536from waeup.kofa.schema import FormattedDate, TextLineChoice
    3637from waeup.kofa.students.vocabularies import nats_vocab, GenderSource
     
    210211    'screening_date',)
    211212
    212 class INigeriaUGApplicant(IApplicantBaseData):
     213class IBankAccount(IKofaObject):
     214
     215    bank_name = schema.TextLine(
     216        title = _(u'Bank Name'),
     217        required = False,
     218        readonly = False,
     219        )
     220
     221    bank_account_name = schema.TextLine(
     222        title = _(u'Bank Account Name'),
     223        required = False,
     224        readonly = False,
     225        )
     226
     227    bank_account_number = schema.TextLine(
     228        title = _(u'Bank Account Number'),
     229        required = False,
     230        readonly = False,
     231        )
     232
     233class INigeriaUGApplicant(IApplicantBaseData, IBankAccount):
    213234    """An undergraduate applicant.
    214235
Note: See TracChangeset for help on using the changeset viewer.