Changeset 14471 for main/waeup.aaue/trunk/src/waeup
- Timestamp:
- 27 Jan 2017, 15:27:59 (8 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/batching.py
r13544 r14471 19 19 """ 20 20 from kofacustom.nigeria.applicants.batching import NigeriaApplicantProcessor 21 from waeup.aaue.applicants.interfaces import ICustomApplicant 21 from waeup.aaue.applicants.interfaces import ( 22 ICustomApplicant, ICustomApplicantUpdateByRegNo) 22 23 23 24 class CustomApplicantProcessor(NigeriaApplicantProcessor): 24 25 25 26 iface = ICustomApplicant 27 iface_byregnumber = ICustomApplicantUpdateByRegNo -
main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py
r14470 r14471 737 737 class ICustomApplicant(ICustomUGApplicant, ICustomPGApplicant, 738 738 ITranscriptApplicant, ICertificateRequest): 739 """An interface for all t hree types of applicants.739 """An interface for all types of applicants. 740 740 741 741 Attention: The ICustomPGApplicant field seetings will be overwritten … … 813 813 """ 814 814 815 class ICustomApplicantUpdateByRegNo(I NigeriaApplicantUpdateByRegNo):815 class ICustomApplicantUpdateByRegNo(ICustomApplicant): 816 816 """Representation of an applicant. 817 817 … … 820 820 """ 821 821 822 823 822 reg_number = schema.TextLine( 823 title = u'Registration Number', 824 required = False, 825 ) 826 827 828 829
Note: See TracChangeset for help on using the changeset viewer.