Changeset 10088 for main/waeup.futminna/trunk/src/waeup
- Timestamp:
- 22 Apr 2013, 05:20:58 (12 years ago)
- Location:
- main/waeup.futminna/trunk/src/waeup/futminna/applicants
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.futminna/trunk/src/waeup/futminna/applicants/interfaces.py
r9058 r10088 23 23 IApplicantBaseData, 24 24 AppCatCertificateSource, CertificateSource) 25 from waeup.kofa.schoolgrades import ResultEntryField 26 from waeup.kofa.interfaces import ( 27 SimpleKofaVocabulary, academic_sessions_vocab, validate_email) 28 from waeup.kofa.schema import FormattedDate, TextLineChoice 29 from waeup.kofa.students.vocabularies import nats_vocab, GenderSource 30 from waeup.kofa.applicants.interfaces import contextual_reg_num_source 25 from waeup.kofa.students.vocabularies import nats_vocab 31 26 from kofacustom.nigeria.applicants.interfaces import ( 32 LGASource, high_qual, high_grade, exam_types,33 INigeriaUGApplicant, INigeriaPGApplicant,27 LGASource, 28 INigeriaUGApplicant, 34 29 INigeriaApplicantOnlinePayment, 35 30 INigeriaUGApplicantEdit, INigeriaPGApplicantEdit, 36 31 INigeriaApplicantUpdateByRegNo, 37 32 IPUTMEApplicantEdit, 33 OMIT_DISPLAY_FIELDS, 34 UG_OMIT_DISPLAY_FIELDS, 35 UG_OMIT_PDF_FIELDS, 36 UG_OMIT_MANAGE_FIELDS, 37 UG_OMIT_EDIT_FIELDS, 38 38 ) 39 40 41 PG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + ('course2',) 42 PG_OMIT_PDF_FIELDS = PG_OMIT_DISPLAY_FIELDS + ('phone',) 43 PG_OMIT_MANAGE_FIELDS = ('course2',) 44 PG_OMIT_EDIT_FIELDS = PG_OMIT_MANAGE_FIELDS + PG_OMIT_DISPLAY_FIELDS + ( 45 'student_id', 'notice', 46 'screening_score', 'screening_venue', 47 'screening_date',) 48 39 49 from waeup.futminna.interfaces import MessageFactory as _ 40 from waeup.futminna.payments.interfaces import ICustomOnlinePayment41 50 42 51 class ICustomUGApplicant(INigeriaUGApplicant): … … 48 57 """ 49 58 50 class ICustomPGApplicant(I NigeriaPGApplicant):59 class ICustomPGApplicant(IApplicantBaseData): 51 60 """A postgraduate applicant. 52 61 … … 55 64 adding them to the PG_OMIT* tuples. 56 65 """ 66 67 nationality = schema.Choice( 68 source = nats_vocab, 69 title = _(u'Nationality'), 70 required = True, 71 ) 72 lga = schema.Choice( 73 source = LGASource(), 74 title = _(u'State/LGA (Nigerians only)'), 75 required = False, 76 ) 77 perm_address = schema.Text( 78 title = _(u'Permanent Address'), 79 required = False, 80 ) 81 course1 = schema.Choice( 82 title = _(u'Programme desired'), 83 source = AppCatCertificateSource(), 84 required = True, 85 ) 86 notice = schema.Text( 87 title = _(u'Notice'), 88 required = False, 89 readonly = False, 90 ) 91 #screening_venue = schema.TextLine( 92 # title = _(u'Screening Venue'), 93 # required = False, 94 # ) 95 #screening_date = schema.TextLine( 96 # title = _(u'Screening Date'), 97 # required = False, 98 # ) 99 #screening_score = schema.Int( 100 # title = _(u'Screening Score (%)'), 101 # required = False, 102 # ) 103 student_id = schema.TextLine( 104 title = _(u'Student Id'), 105 required = False, 106 readonly = False, 107 ) 108 course_admitted = schema.Choice( 109 title = _(u'Admitted Course of Study'), 110 source = CertificateSource(), 111 required = False, 112 readonly = False, 113 ) 114 locked = schema.Bool( 115 title = _(u'Form locked'), 116 default = False, 117 ) 57 118 58 119 class ICustomApplicant(ICustomUGApplicant, ICustomPGApplicant): -
main/waeup.futminna/trunk/src/waeup/futminna/applicants/utils.py
r8833 r10088 23 23 import grok 24 24 from kofacustom.nigeria.applicants.utils import NigeriaApplicantsUtils 25 25 from waeup.futminna.interfaces import MessageFactory as _ 26 26 27 27 … … 29 29 """A collection of parameters and methods subject to customization. 30 30 """ 31 32 SEPARATORS_DICT = { 33 'form.student_id': _(u'Process Data'), 34 }
Note: See TracChangeset for help on using the changeset viewer.