Changeset 6950 for main/waeup.custom/trunk/src/waeup
- Timestamp:
- 25 Oct 2011, 19:42:31 (13 years ago)
- Location:
- main/waeup.custom/trunk/src/waeup/custom
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.custom/trunk/src/waeup/custom/interfaces.py
r6923 r6950 46 46 ) 47 47 48 clearance = schema.Int( 49 title = u'Clearance Fee', 50 default = 0, 51 ) 52 48 53 def getSessionString(): 49 54 """Returns the session string from the vocabulary. -
main/waeup.custom/trunk/src/waeup/custom/students/tests.py
r6949 r6950 60 60 self.browser.getControl(name="form.p_category").value = ['hostel_maintenance'] 61 61 self.browser.getControl("Create ticket").click() 62 self.browser.open(self.payments_student_path + '/addop') 63 self.browser.getControl(name="form.p_category").value = ['clearance'] 64 self.browser.getControl("Create ticket").click() 62 65 self.certificate.study_mode = 'ug_pt' 63 66 self.browser.open(self.payments_student_path + '/addop') -
main/waeup.custom/trunk/src/waeup/custom/students/utils.py
r6926 r6950 23 23 elif category == 'hostel_maintenance': 24 24 amount = academic_session.hostelmaintenance 25 elif category == 'clearance': 26 p_item = student['studycourse'].certificate.code 27 amount = academic_session.clearance 25 28 elif category == 'schoolfee': 26 29 surcharge_1 = academic_session.surcharge_1
Note: See TracChangeset for help on using the changeset viewer.