Changeset 10841 for main/waeup.kofa/trunk/src
- Timestamp:
- 11 Dec 2013, 12:13:52 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/utils.py
r10832 r10841 55 55 payment.p_item = container.title 56 56 payment.p_session = container.year 57 payment.amount_auth = 0.0 57 58 if container.prefix.startswith('special'): 58 fee_name = applicant.special_application + '_fee' 59 payment.amount_auth = getattr(session_config, fee_name, 0.0) 60 payment.p_category = applicant.special_application 59 if applicant.special_application: 60 fee_name = applicant.special_application + '_fee' 61 payment.amount_auth = getattr(session_config, fee_name, 0.0) 62 payment.p_category = applicant.special_application 61 63 return 62 64 payment.p_category = 'application'
Note: See TracChangeset for help on using the changeset viewer.