Ignore:
Timestamp:
24 Apr 2012, 10:30:14 (13 years ago)
Author:
Henrik Bettermann
Message:

Rename Acceptance Fee -> Application Fee

File:
1 edited

Legend:

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

    r8258 r8260  
    442442        return
    443443
    444 class AcceptanceFeePaymentAddPage(UtilityView, grok.View):
     444class ApplicationFeePaymentAddPage(UtilityView, grok.View):
    445445    """ Page to add an online payment ticket
    446446    """
     
    456456
    457457    def update(self):
    458         p_category = 'acceptance'
     458        p_category = 'application'
    459459        session = str(self.context.__parent__.year)
    460460        try:
     
    476476        payment.p_session = self.context.__parent__.year
    477477        payment.p_category = p_category
    478         payment.amount_auth = session_config.acceptance_fee
     478        payment.amount_auth = session_config.application_fee
    479479        payment = self._fillCustomFields(payment, session_config)
    480480        self.context[payment.p_id] = payment
Note: See TracChangeset for help on using the changeset viewer.