Ignore:
Timestamp:
13 Nov 2014, 13:21:59 (11 years ago)
Author:
Henrik Bettermann
Message:

Enucleation. Keep only the portal's framework. Remove university, students, applicants, hostels and accesscodes modules.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/branches/henrik-regista/src/waeup/kofa/payments/interfaces.py

    r11450 r11947  
    1919from zope import schema
    2020from waeup.kofa.interfaces import (
    21     IKofaObject, SimpleKofaVocabulary, academic_sessions_vocab,
     21    IKofaObject, SimpleKofaVocabulary, application_sessions_vocab,
    2222    ContextualDictSourceFactoryBase)
    2323from waeup.kofa.interfaces import MessageFactory as _
     
    6868    p_session = schema.Choice(
    6969        title = _(u'Payment Session'),
    70         source = academic_sessions_vocab,
     70        source = application_sessions_vocab,
    7171        required = True,
    7272        )
     
    133133    def approve():
    134134        "Approve an online payment and set to paid."
    135 
    136 class IPayer(IKofaObject):
    137     """An interface for an adapter to publish student and applicant data
    138     through a simple webservice.
    139 
    140     """
    141     display_fullname = Attribute('Name of  payer')
    142     id = Attribute('Id of payer')
    143     reg_number = Attribute('Reg number of payer')
    144     matric_number = Attribute('Matric number of payer')
    145     faculty = Attribute('Faculty of payer')
    146     department = Attribute('Department of payer')
    147     email= Attribute('Email of payer')
    148     phone= Attribute('Phone number of payer')
    149     current_mode= Attribute('Current study mode of payer')
    150     current_level= Attribute('Current level of payer')
Note: See TracChangeset for help on using the changeset viewer.