Changeset 14589 for main/kofacustom.coewarri/trunk/src/kofacustom/coewarri
- Timestamp:
- 24 Feb 2017, 09:35:46 (8 years ago)
- Location:
- main/kofacustom.coewarri/trunk/src/kofacustom/coewarri
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/interfaces.py
r14456 r14589 43 43 clearance_fee_2 = schema.Float( 44 44 title = _(u'Acceptance Fee Degree'), 45 default = 0.0, 46 required = False, 47 ) 48 49 clearance_fee_3 = schema.Float( 50 title = _(u'Acceptance Fee NCE Weekend'), 45 51 default = 0.0, 46 52 required = False, -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/students/utils.py
r14455 r14589 106 106 except (AttributeError, TypeError): 107 107 return _('Study course data are incomplete.'), None 108 if student.current_mode == 'ug_ft': 108 if student.current_mode == 'nce_we_pt': 109 amount = academic_session.clearance_fee_3 110 elif student.current_mode == 'ug_ft': 109 111 amount = academic_session.clearance_fee_2 110 112 else:
Note: See TracChangeset for help on using the changeset viewer.