Changeset 13831 for main/waeup.uniben/trunk/src/waeup/uniben/applicants
- Timestamp:
- 13 Apr 2016, 21:50:34 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/interfaces.py
r13828 r13831 20 20 """ 21 21 22 #from grok import getSite 22 23 from zope import schema 24 #from zope.interface import invariant, Invalid 25 #from zope.component import getUtility 26 #from zope.catalog.interfaces import ICatalog 23 27 from zc.sourcefactory.basic import BasicSourceFactory 24 28 from waeup.kofa.applicants.interfaces import ( … … 152 156 ) 153 157 158 matric_number = schema.TextLine( 159 title = _(u'Uniben Matriculation Number'), 160 required = False, 161 readonly = False, 162 ) 163 154 164 registration_cats = schema.List( 155 165 title = _(u'Registration Categories'), … … 159 169 ) 160 170 161 171 # @invariant 172 # def matric_number_exists(applicant): 173 # if applicant.matric_number: 174 # catalog = getUtility(ICatalog, name='students_catalog') 175 # accommodation_session = getSite()['hostels'].accommodation_session 176 # student = catalog.searchResults(matric_number=( 177 # applicant.matric_number, applicant.matric_number)) 178 # if len(student) != 1: 179 # raise Invalid(_("Matriculation number not found.")) 162 180 163 181 class ICustomUGApplicant(INigeriaUGApplicant):
Note: See TracChangeset for help on using the changeset viewer.