[57] | 1 | #-*- mode: python; mode: fold -*- |
---|
[200] | 2 | # $Id: Students.py 441 2006-08-29 12:30:03Z joachim $ |
---|
[45] | 3 | from Globals import InitializeClass |
---|
| 4 | from AccessControl import ClassSecurityInfo |
---|
[164] | 5 | from AccessControl.SecurityManagement import newSecurityManager |
---|
[429] | 6 | from zExceptions import BadRequest |
---|
[47] | 7 | from Products.CMFCore.utils import UniqueObject, getToolByName |
---|
[45] | 8 | from Products.CMFCore.permissions import View |
---|
| 9 | from Products.CMFCore.permissions import ModifyPortalContent |
---|
[154] | 10 | from Products.CPSCore.CPSBase import CPSBase_adder, CPSBaseFolder |
---|
| 11 | #from Products.CPSCore.CPSBase import CPSBaseDocument as BaseDocument |
---|
| 12 | from Products.CPSDocument.CPSDocument import CPSDocument |
---|
| 13 | from Products.CPSCore.CPSBase import CPSBaseBTreeFolder as BaseBTreeFolder |
---|
[164] | 14 | from Products.CPSCore.CPSMembershipTool import CPSUnrestrictedUser |
---|
[361] | 15 | from Products.WAeUP_SRP.Academics import makeCertificateCode |
---|
[362] | 16 | import logging |
---|
| 17 | import csv,re |
---|
| 18 | import Globals |
---|
| 19 | p_home = Globals.package_home(globals()) |
---|
| 20 | i_home = Globals.INSTANCE_HOME |
---|
[398] | 21 | MAX_TRANS = 1000 |
---|
[154] | 22 | |
---|
[422] | 23 | def generateStudentId(): |
---|
| 24 | import random |
---|
[423] | 25 | r = random |
---|
| 26 | return "%c%d" % (r.choice('ABCDEFGHKLMNPQRSTUVWXY'),r.randint(99999,1000000)) |
---|
[422] | 27 | |
---|
[361] | 28 | class StudentsFolder(CPSDocument): ###( |
---|
| 29 | """ |
---|
| 30 | WAeUP container for the various WAeUP containers data |
---|
| 31 | """ |
---|
[362] | 32 | meta_type = 'StudentsFolder' |
---|
[361] | 33 | portal_type = meta_type |
---|
| 34 | security = ClassSecurityInfo() |
---|
[154] | 35 | |
---|
[361] | 36 | security.declareProtected(ModifyPortalContent,"loadFullTimeStudentsFromCSV")###( |
---|
| 37 | def loadFullTimeStudentsFromCSV(self): |
---|
| 38 | """load Fulltime Studentdata from CSV values""" |
---|
| 39 | #return |
---|
[398] | 40 | import transaction |
---|
| 41 | tr_count = 0 |
---|
[361] | 42 | name = 'short_full_time' |
---|
| 43 | no_import = False |
---|
[395] | 44 | if not no_import: |
---|
| 45 | no_import = open("%s/import/%s_not_imported.csv" % (i_home,name),"w") |
---|
| 46 | no_import.write('"MatricNo","EntryRegNo","CurrentSession","StudentLevel","fullname","FirstName","MiddleName","Lastname","FormerSurname","Sex","Nationality","State","LGA","PermanentAddress","PermanentAddressCity","CampusAddress","PhoneNumber","Emailaddress","Mode","CourseMajor","Faculty","Dept"\n') |
---|
[361] | 47 | logger = logging.getLogger('%s_import' % name) |
---|
| 48 | logger.info('Start loading from %s.csv' % name) |
---|
| 49 | students_folder = self.portal_catalog({'meta_type': 'StudentsFolder'})[-1].getObject() |
---|
| 50 | try: |
---|
| 51 | students = csv.DictReader(open("%s/import/%s.csv" % (i_home,name),"rb")) |
---|
| 52 | except: |
---|
| 53 | logger.error('Error reading %s.csv' % name) |
---|
| 54 | return |
---|
[422] | 55 | l = self.portal_catalog({'meta_type': "StudentClearance",}) |
---|
| 56 | matrics = [] |
---|
[361] | 57 | for s in l: |
---|
[422] | 58 | matrics.append(s.getObject().getContent().matric_no) |
---|
[423] | 59 | print matrics |
---|
[361] | 60 | l = self.portal_catalog({'meta_type': "Certificate"}) |
---|
| 61 | certs = {} |
---|
| 62 | for c in l: |
---|
[362] | 63 | certs[c.id] = c.getObject() |
---|
[361] | 64 | for student in students: |
---|
[393] | 65 | logger.info('processing "%(MatricNo)s","%(EntryRegNo)s","%(CurrentSession)s","%(StudentLevel)s","%(fullname)s","%(FirstName)s","%(MiddleName)s","%(Lastname)s","%(FormerSurname)s","%(Sex)s","%(Nationality)s","%(State)s","%(LGA)s","%(PermanentAddress)s","%(PermanentAddressCity)s","%(CampusAddress)s","%(PhoneNumber)s","%(Emailaddress)s","%(Mode)s","%(CourseMajor)s","%(Faculty)s","%(Dept)s"\n' % student) |
---|
[361] | 66 | sid = student.get('MatricNo') |
---|
[396] | 67 | if sid == "": |
---|
| 68 | em = 'Empty MatricNo\n' |
---|
| 69 | logger.info(em) |
---|
| 70 | no_import.write(em) |
---|
| 71 | no_import.write('"%(MatricNo)s","%(EntryRegNo)s","%(CurrentSession)s","%(StudentLevel)s","%(fullname)s","%(FirstName)s","%(MiddleName)s","%(Lastname)s","%(FormerSurname)s","%(Sex)s","%(Nationality)s","%(State)s","%(LGA)s","%(PermanentAddress)s","%(PermanentAddressCity)s","%(CampusAddress)s","%(PhoneNumber)s","%(Emailaddress)s","%(Mode)s","%(CourseMajor)s","%(Faculty)s","%(Dept)s"\n' % student) |
---|
| 72 | continue |
---|
[361] | 73 | certcode = makeCertificateCode(student.get('CourseMajor')) |
---|
| 74 | if certcode not in certs.keys(): |
---|
[393] | 75 | em = 'Certificate with ID %s %s not found\n' % (certcode, student.get('CourseMajor')) |
---|
[361] | 76 | logger.info(em) |
---|
[393] | 77 | no_import.write(em) |
---|
| 78 | no_import.write('"%(MatricNo)s","%(EntryRegNo)s","%(CurrentSession)s","%(StudentLevel)s","%(fullname)s","%(FirstName)s","%(MiddleName)s","%(Lastname)s","%(FormerSurname)s","%(Sex)s","%(Nationality)s","%(State)s","%(LGA)s","%(PermanentAddress)s","%(PermanentAddressCity)s","%(CampusAddress)s","%(PhoneNumber)s","%(Emailaddress)s","%(Mode)s","%(CourseMajor)s","%(Faculty)s","%(Dept)s"\n' % student) |
---|
[361] | 79 | continue |
---|
[395] | 80 | level = student.get('StudentLevel') |
---|
[426] | 81 | try: |
---|
[395] | 82 | int(level) |
---|
| 83 | except: |
---|
| 84 | em = 'Student with ID %(MatricNo)s StudentLevel is empty\n' % student |
---|
| 85 | logger.info(em) |
---|
| 86 | no_import.write(em) |
---|
| 87 | no_import.write('"%(MatricNo)s","%(EntryRegNo)s","%(CurrentSession)s","%(StudentLevel)s","%(fullname)s","%(FirstName)s","%(MiddleName)s","%(Lastname)s","%(FormerSurname)s","%(Sex)s","%(Nationality)s","%(State)s","%(LGA)s","%(PermanentAddress)s","%(PermanentAddressCity)s","%(CampusAddress)s","%(PhoneNumber)s","%(Emailaddress)s","%(Mode)s","%(CourseMajor)s","%(Faculty)s","%(Dept)s"\n' % student) |
---|
| 88 | continue |
---|
[422] | 89 | matric_no = student.get('MatricNo') |
---|
| 90 | if matric_no not in matrics: |
---|
| 91 | matrics.append(matric_no) |
---|
| 92 | sid = generateStudentId() |
---|
[361] | 93 | #self.log('Creating Faculty %(id)s = %(Title)s' % faculty) |
---|
[426] | 94 | logger.info('%(tr_count)s: Creating Student with ID %(sid)s Matric_no %(matric_no)s ' % vars()) |
---|
[429] | 95 | not_created = True |
---|
| 96 | while not_created: |
---|
| 97 | try: |
---|
| 98 | students_folder.invokeFactory('Student', sid) |
---|
| 99 | not_created = False |
---|
| 100 | except BadRequest: |
---|
| 101 | sid = generateStudentId() |
---|
| 102 | logger.info('%(tr_count)s: Creating Student with ID %(sid)s Matric_no %(matric_no)s ' % vars()) |
---|
[361] | 103 | s = getattr(self,sid) |
---|
[441] | 104 | s.invokeFactory('StudentAdmission','admission') |
---|
| 105 | s.admission.getContent().edit(mapping={'Title': 'Admission Data'}) |
---|
[361] | 106 | s.invokeFactory('StudentPersonal','personal') |
---|
[362] | 107 | sp = s.personal |
---|
[361] | 108 | d = {'Title': 'Personal Data'} |
---|
[422] | 109 | s.invokeFactory('StudentClearance','clearance') |
---|
[427] | 110 | sc = s.clearance |
---|
[422] | 111 | dc = {'Title': 'Clearance Data'} |
---|
| 112 | dc['matric_no'] = matric_no |
---|
| 113 | dc['jamb_reg_no'] = student.get('EntryRegNo') |
---|
[427] | 114 | lga = student.get('State') + ' / ' + student.get('LGA') |
---|
| 115 | dc['lga'] = lga |
---|
[422] | 116 | dc['nationality'] = student.get('Nationality') |
---|
| 117 | dc['email'] = student.get('Emailaddress') |
---|
[361] | 118 | d['firstname'] = student.get('FirstName') |
---|
| 119 | d['middlename'] = student.get('MiddleName') |
---|
[362] | 120 | d['lastname'] = student.get('Lastname') |
---|
[361] | 121 | d['former_surname'] = student.get('FormerSurname') |
---|
[362] | 122 | d['sex'] = student.get('Sex') == 'F' |
---|
[422] | 123 | d['perm_address'] = student.get('PermanentAddress') |
---|
| 124 | d['perm_city'] = student.get('PermanentAddressCity') |
---|
[361] | 125 | d['campus_address'] = student.get('CampusAddress') |
---|
| 126 | d['phone'] = student.get('PhoneNumber') |
---|
[362] | 127 | sp.getContent().edit(mapping=d) |
---|
[422] | 128 | sc.getContent().edit(mapping=dc) |
---|
[362] | 129 | # |
---|
| 130 | # Study Course |
---|
| 131 | # |
---|
| 132 | s.invokeFactory('StudentStudyCourse','study_course') |
---|
| 133 | sc = s.study_course |
---|
| 134 | d = {} |
---|
[422] | 135 | #d['matricel_no'] = student.get('MatricNo') |
---|
| 136 | #d['entry_reg_no'] = student.get('EntryRegNo') |
---|
| 137 | #d['faculty'] = student.get('Faculty') |
---|
| 138 | #d['department'] = student.get('Dept') |
---|
[362] | 139 | d['course_major'] = certcode |
---|
| 140 | css = student.get('CurrentSession') or '2004-2005' |
---|
| 141 | cs = int(css.split('-')[0]) - 2000 |
---|
| 142 | cl = int(student.get('StudentLevel'))/100 |
---|
| 143 | d['entry_session'] = "200%s" % (cs - cl) |
---|
| 144 | sc.getContent().edit(mapping=d) |
---|
[364] | 145 | # |
---|
| 146 | # Level |
---|
| 147 | # |
---|
| 148 | l = getattr(sc,level,None) |
---|
| 149 | if l is None: |
---|
| 150 | #self.log('Creating Department %(DeptCode)s = %(Description)s' % dep) |
---|
| 151 | logger.info('Creating Level %(StudentLevel)s for %(fullname)s' % student) |
---|
| 152 | sc.invokeFactory('StudyLevel', level) |
---|
| 153 | l = getattr(sc, level) |
---|
| 154 | certificate = certs[certcode] |
---|
| 155 | cert_level = getattr(certificate,level,None) |
---|
| 156 | if cert_level is None: |
---|
| 157 | logger.info('Level %(level)s not in %(certcode)s' % vars()) |
---|
| 158 | l.getContent().edit(mapping={'Title': "Level %s" % level}) |
---|
| 159 | l.invokeFactory('Semester','first') |
---|
| 160 | l.invokeFactory('Semester','second') |
---|
| 161 | first_s = getattr(l,'first') |
---|
| 162 | first_s.getContent().edit(mapping={'Title': 'First Semester'}) |
---|
| 163 | second_s = getattr(l,'second') |
---|
| 164 | second_s.getContent().edit(mapping={'Title': 'Second Semester'}) |
---|
[361] | 165 | else: |
---|
[393] | 166 | em = 'Student with ID %(MatricNo)s %(fullname)s already exists\n' % student |
---|
[361] | 167 | logger.info(em) |
---|
[393] | 168 | no_import.write(em) |
---|
| 169 | no_import.write('"%(MatricNo)s","%(EntryRegNo)s","%(CurrentSession)s","%(StudentLevel)s","%(fullname)s","%(FirstName)s","%(MiddleName)s","%(Lastname)s","%(FormerSurname)s","%(Sex)s","%(Nationality)s","%(State)s","%(LGA)s","%(PermanentAddress)s","%(PermanentAddressCity)s","%(CampusAddress)s","%(PhoneNumber)s","%(Emailaddress)s","%(Mode)s","%(CourseMajor)s","%(Faculty)s","%(Dept)s"\n' % student) |
---|
[398] | 170 | if tr_count > MAX_TRANS: |
---|
[422] | 171 | transaction.commit() |
---|
| 172 | em = 'Transaction commited\n' % student |
---|
[398] | 173 | logger.info(em) |
---|
| 174 | tr_count = 0 |
---|
| 175 | tr_count += 1 |
---|
[423] | 176 | return self.REQUEST.RESPONSE.redirect("%s" % self.REQUEST.get('URL1')) |
---|
[393] | 177 | return self.students.academics_contents() |
---|
[361] | 178 | ###) |
---|
[382] | 179 | |
---|
[398] | 180 | security.declareProtected(ModifyPortalContent,"loadFullTimeStudentsResultsFromCSV") ###( |
---|
[396] | 181 | def loadFullTimeStudentsResultsFromCSV(self): |
---|
| 182 | """load Fulltime Studentdata from CSV values""" |
---|
| 183 | #return |
---|
[398] | 184 | import transaction |
---|
| 185 | tr_count = 0 |
---|
| 186 | name = 'short_full_time_results_2004_2005' |
---|
[396] | 187 | no_import = False |
---|
| 188 | if not no_import: |
---|
| 189 | no_import = open("%s/import/%s_not_imported.csv" % (i_home,name),"w") |
---|
| 190 | no_import.write('"Matnumber","CosCode","Ansbook","CosStuatus","Session","Mat_Cos","Score","CarryLevel","Grade","Weight","Semster","Verdict","Level","id","GPA"\n') |
---|
| 191 | logger = logging.getLogger('%s_import' % name) |
---|
| 192 | logger.info('Start loading from %s.csv' % name) |
---|
| 193 | students_folder = self.portal_catalog({'meta_type': 'StudentsFolder'})[-1].getObject() |
---|
| 194 | try: |
---|
| 195 | results = csv.DictReader(open("%s/import/%s.csv" % (i_home,name),"rb")) |
---|
| 196 | except: |
---|
| 197 | logger.error('Error reading %s.csv' % name) |
---|
| 198 | return |
---|
| 199 | l = self.portal_catalog({'meta_type': "Student"}) |
---|
| 200 | students = {} |
---|
| 201 | for s in l: |
---|
| 202 | students[s.id] = s.getObject() |
---|
[398] | 203 | l = self.portal_catalog({'meta_type': "Course"}) |
---|
| 204 | courses = {} |
---|
| 205 | for c in l: |
---|
| 206 | courses[c.id] = c.getObject() |
---|
[396] | 207 | for result in results: |
---|
| 208 | sid = result.get('Matnumber') |
---|
[426] | 209 | if sid not in students.keys(): |
---|
[398] | 210 | em = 'Student with ID %(Matnumber)s not found\n' % result |
---|
[396] | 211 | logger.info(em) |
---|
| 212 | no_import.write(em) |
---|
[398] | 213 | no_import.write('"%(Matnumber)s","%(CosCode)s","%(Ansbook)s","%(CosStuatus)s","%(Session)s","%(Mat_Cos)s","%(Score)s","%(CarryLevel)s","%(Grade)s","%(Weight)s","%(Semster)s","%(Verdict)s","%(Level)s","%(id)s","%(GPA)s"\n' % result) |
---|
[396] | 214 | continue |
---|
[398] | 215 | course = result.get('CosCode') |
---|
| 216 | if course not in courses.keys(): |
---|
| 217 | em = 'Course with ID %(CosCode)s not found\n' % result |
---|
[396] | 218 | logger.info(em) |
---|
| 219 | no_import.write(em) |
---|
[398] | 220 | no_import.write('"%(Matnumber)s","%(CosCode)s","%(Ansbook)s","%(CosStuatus)s","%(Session)s","%(Mat_Cos)s","%(Score)s","%(CarryLevel)s","%(Grade)s","%(Weight)s","%(Semster)s","%(Verdict)s","%(Level)s","%(id)s","%(GPA)s"\n' % result) |
---|
[396] | 221 | continue |
---|
[398] | 222 | level = result.get('Level') |
---|
[426] | 223 | try: |
---|
[396] | 224 | int(level) |
---|
| 225 | except: |
---|
[398] | 226 | em = 'Result for result with ID %(Matnumber)s Course %(CosCode)s Level is empty\n' % result |
---|
[396] | 227 | logger.info(em) |
---|
| 228 | no_import.write(em) |
---|
[398] | 229 | no_import.write('"%(Matnumber)s","%(CosCode)s","%(Ansbook)s","%(CosStuatus)s","%(Session)s","%(Mat_Cos)s","%(Score)s","%(CarryLevel)s","%(Grade)s","%(Weight)s","%(Semster)s","%(Verdict)s","%(Level)s","%(id)s","%(GPA)s"\n' % result) |
---|
[396] | 230 | continue |
---|
| 231 | sf = students.get(sid) |
---|
| 232 | sc = getattr(sf,'study_course') |
---|
| 233 | l = getattr(sc,level,None) |
---|
| 234 | if l is None: |
---|
| 235 | #self.log('Creating Department %(DeptCode)s = %(Description)s' % dep) |
---|
[398] | 236 | logger.info('Creating Level %(Level)s for %(Matnumber)s' % result) |
---|
[396] | 237 | sc.invokeFactory('StudyLevel', level) |
---|
| 238 | l = getattr(sc, level) |
---|
| 239 | l.getContent().edit(mapping={'Title': "Level %s" % level}) |
---|
| 240 | l.invokeFactory('Semester','first') |
---|
| 241 | l.invokeFactory('Semester','second') |
---|
| 242 | first_s = getattr(l,'first') |
---|
| 243 | first_s.getContent().edit(mapping={'Title': 'First Semester'}) |
---|
| 244 | second_s = getattr(l,'second') |
---|
| 245 | second_s.getContent().edit(mapping={'Title': 'Second Semester'}) |
---|
[398] | 246 | snr = result.get('Semester') |
---|
[396] | 247 | semester = getattr(l,'first') |
---|
[398] | 248 | if snr == "2": |
---|
[396] | 249 | semester = getattr(l,'second') |
---|
[398] | 250 | logger.info('Creating CourseTicket %(CourseTicket)s in Level %(Level)s for %(Matnumber)s' % result) |
---|
| 251 | semester.invokeFactory('CourseTicket',course) |
---|
| 252 | ct = getattr(semester,course) |
---|
| 253 | d = {} |
---|
| 254 | d['ansbook'] = result.get('Ansbook') |
---|
| 255 | d['status'] = result.get('CosStuatus') |
---|
| 256 | d['score'] = result.get('Score') |
---|
| 257 | d['carry_level'] = result.get('CarryLevel') |
---|
| 258 | d['grade'] = result.get('Grade') |
---|
| 259 | d['weight'] = result.get('Weight') |
---|
| 260 | d['verdict'] = result.get('Verdict') |
---|
| 261 | d['import_id'] = result.get('id') |
---|
| 262 | gpa = result.get('GPA').replace(',','.') |
---|
[426] | 263 | d['gpa'] = float(gpa) |
---|
[398] | 264 | ct.getContent().edit(mapping = d) |
---|
| 265 | if tr_count > MAX_TRANS: |
---|
| 266 | transaction.commit() |
---|
| 267 | tr_count = 0 |
---|
| 268 | tr_count += 1 |
---|
| 269 | return self.students.academics_contents() |
---|
[426] | 270 | |
---|
[398] | 271 | ###) |
---|
[396] | 272 | |
---|
[426] | 273 | |
---|
[364] | 274 | security.declareProtected(View,"Title") |
---|
| 275 | def Title(self): |
---|
| 276 | """compose title""" |
---|
[382] | 277 | return "Student Section" |
---|
[361] | 278 | |
---|
| 279 | InitializeClass(StudentsFolder) |
---|
| 280 | |
---|
| 281 | def addStudentsFolder(container, id, REQUEST=None, **kw): |
---|
| 282 | """Add a Student.""" |
---|
| 283 | ob = StudentsFolder(id, **kw) |
---|
| 284 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 285 | ###) |
---|
| 286 | |
---|
[57] | 287 | class Student(CPSDocument): ###( |
---|
| 288 | """ |
---|
[154] | 289 | WAeUP Student container for the various student data |
---|
[57] | 290 | """ |
---|
| 291 | meta_type = 'Student' |
---|
| 292 | portal_type = meta_type |
---|
| 293 | security = ClassSecurityInfo() |
---|
[154] | 294 | |
---|
[152] | 295 | security.declareProtected(View,"Title") |
---|
| 296 | def Title(self): |
---|
| 297 | """compose title""" |
---|
[153] | 298 | reg_nr = self.getId()[1:] |
---|
[362] | 299 | data = getattr(self,'personal',None) |
---|
[152] | 300 | if data is None: |
---|
[362] | 301 | data = getattr(self,'jamb',None) |
---|
[152] | 302 | if data: |
---|
| 303 | content = data.getContent() |
---|
| 304 | return "%s %s" % (content.firstname,content.lastname) |
---|
| 305 | return self.title |
---|
[154] | 306 | |
---|
| 307 | def Description(self): |
---|
| 308 | """compose description""" |
---|
[170] | 309 | data = getattr(self,'PERSONAL',None) |
---|
| 310 | if data is None: |
---|
[191] | 311 | return "none" |
---|
[154] | 312 | if data: |
---|
[191] | 313 | content = data.getContent() |
---|
| 314 | return "%s" % (content.description) |
---|
[154] | 315 | return self.description |
---|
| 316 | |
---|
[164] | 317 | security.declareProtected(View,"setScratchCardData") |
---|
| 318 | def setScratchCardData(self,ident,ds): |
---|
| 319 | """set this data """ |
---|
| 320 | dict = {'%s_sc_pin' % ident : ds.get('sc_pin'), |
---|
| 321 | '%s_sc_id' % ident : ds.get('sc_id'), |
---|
| 322 | '%s_sc_value' % ident : ds.get('sc_value'), |
---|
[166] | 323 | '%s_date' % ident : ds.get('sc_date'), |
---|
[164] | 324 | } |
---|
[170] | 325 | |
---|
[173] | 326 | old_user = self.portal_membership.getAuthenticatedMember() |
---|
[166] | 327 | if self.portal_membership.isAnonymousUser(): |
---|
| 328 | tmp_user = CPSUnrestrictedUser('s%(jamb_id)s' % ds, '', |
---|
[164] | 329 | ['StudentManager'], '') |
---|
[166] | 330 | tmp_user = tmp_user.__of__(self.acl_users) |
---|
| 331 | newSecurityManager(None, tmp_user) |
---|
| 332 | #print str(dict) |
---|
[164] | 333 | self.edit(mapping=dict) |
---|
[173] | 334 | newSecurityManager(None, old_user) |
---|
[164] | 335 | |
---|
| 336 | security.declareProtected(View,"memberIsOwner") |
---|
| 337 | def memberIsOwner(self): |
---|
| 338 | """is the current user the owner""" |
---|
| 339 | member = self.portal_membership.getAuthenticatedMember() |
---|
| 340 | #print member, self.getId(),self.aq_parent.getId() |
---|
| 341 | if self.aq_parent.getId() == str(member): |
---|
| 342 | return True |
---|
| 343 | return False |
---|
| 344 | |
---|
[166] | 345 | security.declareProtected(View,"accommodationIsBooked") |
---|
| 346 | def accommodationIsBooked(self): |
---|
| 347 | """is the accommodation booked""" |
---|
| 348 | if self.accommodation_sc_pin != '': |
---|
| 349 | return True |
---|
| 350 | return False |
---|
| 351 | |
---|
| 352 | security.declareProtected(View,"accommodationIsPayed") |
---|
| 353 | def accommodationIsPayed(self): |
---|
| 354 | """is the accommodation payed""" |
---|
[168] | 355 | if self.hostel_fee_sc_pin != '': |
---|
[166] | 356 | return True |
---|
| 357 | return False |
---|
| 358 | |
---|
| 359 | security.declareProtected(View,"isRegisteredForCurrentLevel") |
---|
| 360 | def isRegisteredForCurrentLevel(self): |
---|
| 361 | """is the student registered for the current level""" |
---|
| 362 | for l in self.aq_parent.objectValues(): |
---|
| 363 | if l.portal_type == 'StudyLevel': |
---|
| 364 | return True |
---|
| 365 | return False |
---|
| 366 | |
---|
[57] | 367 | InitializeClass(Student) |
---|
| 368 | |
---|
| 369 | def addStudent(container, id, REQUEST=None, **kw): |
---|
| 370 | """Add a Student.""" |
---|
| 371 | ob = Student(id, **kw) |
---|
| 372 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 373 | |
---|
| 374 | ###) |
---|
[91] | 375 | |
---|
[89] | 376 | class StudentPersonal(CPSDocument): ###( |
---|
| 377 | """ |
---|
[154] | 378 | WAeUP Student container for the various student data |
---|
[89] | 379 | """ |
---|
| 380 | meta_type = 'StudentPersonal' |
---|
| 381 | portal_type = meta_type |
---|
| 382 | security = ClassSecurityInfo() |
---|
[152] | 383 | |
---|
| 384 | security.declareProtected(View,"Title") |
---|
| 385 | def Title(self): |
---|
| 386 | """compose title""" |
---|
| 387 | content = self.getContent() |
---|
[364] | 388 | #return "Personal Data for %s %s" % (content.firstname,content.lastname) |
---|
| 389 | return "Personal Data" |
---|
[152] | 390 | |
---|
[154] | 391 | |
---|
[89] | 392 | InitializeClass(StudentPersonal) |
---|
| 393 | |
---|
| 394 | def addStudentPersonal(container, id, REQUEST=None, **kw): |
---|
| 395 | """Add a Students personal data.""" |
---|
| 396 | ob = StudentPersonal(id, **kw) |
---|
| 397 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 398 | |
---|
| 399 | ###) |
---|
| 400 | |
---|
[423] | 401 | class StudentClearance(CPSDocument): ###( |
---|
| 402 | """ |
---|
| 403 | WAeUP Student container for the various student data |
---|
| 404 | """ |
---|
| 405 | meta_type = 'StudentClearance' |
---|
| 406 | portal_type = meta_type |
---|
| 407 | security = ClassSecurityInfo() |
---|
| 408 | |
---|
| 409 | security.declareProtected(View,"Title") |
---|
| 410 | def Title(self): |
---|
| 411 | """compose title""" |
---|
| 412 | content = self.getContent() |
---|
| 413 | #return "Clearance Data for %s %s" % (content.firstname,content.lastname) |
---|
| 414 | return "Clearance Data" |
---|
| 415 | |
---|
| 416 | |
---|
| 417 | InitializeClass(StudentClearance) |
---|
| 418 | |
---|
| 419 | def addStudentClearance(container, id, REQUEST=None, **kw): |
---|
| 420 | """Add a Students personal data.""" |
---|
| 421 | ob = StudentClearance(id, **kw) |
---|
| 422 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 423 | |
---|
| 424 | ###) |
---|
| 425 | |
---|
[362] | 426 | class StudentStudyCourse(CPSDocument): ###( |
---|
| 427 | """ |
---|
| 428 | WAeUP Student container for the various student data |
---|
| 429 | """ |
---|
| 430 | meta_type = 'StudentStudyCourse' |
---|
| 431 | portal_type = meta_type |
---|
| 432 | security = ClassSecurityInfo() |
---|
| 433 | |
---|
[364] | 434 | security.declareProtected(View,"Title") |
---|
| 435 | def Title(self): |
---|
| 436 | """compose title""" |
---|
| 437 | content = self.getContent() |
---|
[382] | 438 | return "Course Major" |
---|
[362] | 439 | |
---|
| 440 | |
---|
| 441 | InitializeClass(StudentStudyCourse) |
---|
| 442 | |
---|
| 443 | def addStudentStudyCourse(container, id, REQUEST=None, **kw): |
---|
| 444 | """Add a Students personal data.""" |
---|
| 445 | ob = StudentStudyCourse(id, **kw) |
---|
| 446 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 447 | |
---|
| 448 | ###) |
---|
| 449 | |
---|
[423] | 450 | class StudentAdmission(CPSDocument): ###( |
---|
[179] | 451 | """ |
---|
| 452 | WAeUP Student container for the various student data |
---|
| 453 | """ |
---|
[423] | 454 | meta_type = 'StudentAdmission' |
---|
[179] | 455 | portal_type = meta_type |
---|
| 456 | security = ClassSecurityInfo() |
---|
| 457 | |
---|
[181] | 458 | security.declareProtected(View,"Title") |
---|
| 459 | def Title(self): |
---|
| 460 | """compose title""" |
---|
[423] | 461 | return "Admission Data" |
---|
[179] | 462 | |
---|
[181] | 463 | |
---|
[423] | 464 | InitializeClass(StudentAdmission) |
---|
[179] | 465 | |
---|
[423] | 466 | def addStudentAdmission(container, id, REQUEST=None, **kw): |
---|
[179] | 467 | """Add a Students eligibility data.""" |
---|
[423] | 468 | ob = StudentAdmission(id, **kw) |
---|
[179] | 469 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 470 | |
---|
| 471 | ###) |
---|
[181] | 472 | |
---|
[440] | 473 | class StudyLevel(CPSDocument): ###( |
---|
[166] | 474 | """ |
---|
[440] | 475 | WAeUP StudyLevel containing the courses and students |
---|
[166] | 476 | """ |
---|
[440] | 477 | meta_type = 'StudyLevel' |
---|
[166] | 478 | portal_type = meta_type |
---|
| 479 | security = ClassSecurityInfo() |
---|
| 480 | |
---|
| 481 | security.declareProtected(View,"Title") |
---|
| 482 | def Title(self): |
---|
| 483 | """compose title""" |
---|
[440] | 484 | return "Level %s" % self.aq_parent.getId() |
---|
| 485 | |
---|
[166] | 486 | |
---|
[440] | 487 | InitializeClass(StudyLevel) |
---|
[166] | 488 | |
---|
[440] | 489 | def addStudyLevel(container, id, REQUEST=None, **kw): |
---|
| 490 | """Add a StudyLevel.""" |
---|
| 491 | ob = StudyLevel(id, **kw) |
---|
[166] | 492 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 493 | |
---|
| 494 | ###) |
---|
| 495 | |
---|
[440] | 496 | class Semester(CPSDocument): ###( |
---|
[89] | 497 | """ |
---|
[440] | 498 | WAeUP Semester containing the courses and students |
---|
[89] | 499 | """ |
---|
[440] | 500 | meta_type = 'Semester' |
---|
[89] | 501 | portal_type = meta_type |
---|
| 502 | security = ClassSecurityInfo() |
---|
[154] | 503 | |
---|
[440] | 504 | InitializeClass(Semester) |
---|
[152] | 505 | |
---|
[440] | 506 | def addSemester(container, id, REQUEST=None, **kw): |
---|
| 507 | """Add a Semester.""" |
---|
| 508 | ob = Semester(id, **kw) |
---|
[89] | 509 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 510 | |
---|
[139] | 511 | ###) |
---|
| 512 | |
---|
[440] | 513 | class ScratchCardBatchesFolder(CPSDocument): ###( |
---|
[139] | 514 | """ |
---|
[440] | 515 | WAeUP Student container for the various student data |
---|
[139] | 516 | """ |
---|
[440] | 517 | meta_type = 'ScratchCardBatchesFolder' |
---|
[139] | 518 | portal_type = meta_type |
---|
| 519 | security = ClassSecurityInfo() |
---|
[154] | 520 | |
---|
[440] | 521 | security.declareProtected(View,"Title") |
---|
| 522 | def Title(self): |
---|
| 523 | """compose title""" |
---|
| 524 | return "Pin Batches" |
---|
[139] | 525 | |
---|
[440] | 526 | |
---|
| 527 | InitializeClass(ScratchCardBatchesFolder) |
---|
| 528 | |
---|
| 529 | def addScratchCardBatchesFolder(container, id, REQUEST=None, **kw): |
---|
| 530 | """Add a Students personal data.""" |
---|
| 531 | ob = ScratchCardBatchesFolder(id, **kw) |
---|
[139] | 532 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 533 | |
---|
| 534 | ###) |
---|
| 535 | |
---|
[440] | 536 | from Products.WAeUP_SRP.WAeUPTables import PinTable |
---|
| 537 | |
---|
| 538 | class ScratchCardBatch(CPSDocument): ###( |
---|
[139] | 539 | """ |
---|
[440] | 540 | WAeUP Student container for the various student data |
---|
[139] | 541 | """ |
---|
[440] | 542 | meta_type = 'ScratchCardBatch' |
---|
[139] | 543 | portal_type = meta_type |
---|
| 544 | security = ClassSecurityInfo() |
---|
[154] | 545 | |
---|
[440] | 546 | security.declareProtected(View,"Title") |
---|
| 547 | def Title(self): |
---|
| 548 | """compose title""" |
---|
| 549 | doc = self.getContent() |
---|
| 550 | return "Pin Batch %s BatchNo %d" % (doc.prefix, doc.batch_no) |
---|
[139] | 551 | |
---|
[440] | 552 | |
---|
| 553 | InitializeClass(ScratchCardBatch) |
---|
| 554 | |
---|
| 555 | def addScratchCardBatch(container, id, REQUEST=None, **kw): |
---|
| 556 | """Add a Students personal data.""" |
---|
| 557 | ob = ScratchCardBatch(id, **kw) |
---|
[139] | 558 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
[200] | 559 | |
---|
[139] | 560 | ###) |
---|