- Timestamp:
- 7 Jun 2016, 20:08:05 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/utils.py
r13216 r13886 73 73 payment.p_category = 'application' 74 74 container_fee = container.application_fee 75 if container_fee: 76 payment.amount_auth = container_fee 77 return 78 payment.amount_auth = session_config.application_fee 79 if payment.amount_auth in (0.0, None): 75 if not container_fee: 80 76 return _('Amount could not be determined.') 77 payment.amount_auth = container_fee 81 78 return 82 79
Note: See TracChangeset for help on using the changeset viewer.