- Timestamp:
- 24 Apr 2012, 10:30:14 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r8258 r8260 442 442 return 443 443 444 class A cceptanceFeePaymentAddPage(UtilityView, grok.View):444 class ApplicationFeePaymentAddPage(UtilityView, grok.View): 445 445 """ Page to add an online payment ticket 446 446 """ … … 456 456 457 457 def update(self): 458 p_category = 'a cceptance'458 p_category = 'application' 459 459 session = str(self.context.__parent__.year) 460 460 try: … … 476 476 payment.p_session = self.context.__parent__.year 477 477 payment.p_category = p_category 478 payment.amount_auth = session_config.a cceptance_fee478 payment.amount_auth = session_config.application_fee 479 479 payment = self._fillCustomFields(payment, session_config) 480 480 self.context[payment.p_id] = payment
Note: See TracChangeset for help on using the changeset viewer.