Changeset 8420 for main/waeup.kofa/trunk/src/waeup/kofa/students/utils.py
- Timestamp:
- 11 May 2012, 14:18:47 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/utils.py
r8410 r8420 266 266 academic_session = grok.getSite()['configuration'][session] 267 267 except KeyError: 268 details['error'] = u'Session configuration object is not available.'268 details['error'] = _(u'Session configuration object is not available.') 269 269 return details 270 270 if category == 'schoolfee': … … 284 284 details['p_item'] = self.getAccommodationDetails(student)['bt'] 285 285 details['amount'] = academic_session.booking_fee 286 if details['amount'] in (0.0, None): 287 details['error'] = _(u'Amount could not be determined.') 286 288 return details 287 289
Note: See TracChangeset for help on using the changeset viewer.