Ignore:
Timestamp:
7 Jun 2016, 20:08:05 (8 years ago)
Author:
Henrik Bettermann
Message:

Remove application fee fallback option. This option has never been used and is confusing.

Hide Payment Tickets section on application pages if fee isn't set.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/utils.py

    r13216 r13886  
    7373        payment.p_category = 'application'
    7474        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:
    8076            return _('Amount could not be determined.')
     77        payment.amount_auth = container_fee
    8178        return
    8279
Note: See TracChangeset for help on using the changeset viewer.