Changeset 7145 for main/waeup.custom/trunk
- Timestamp:
- 19 Nov 2011, 17:56:03 (13 years ago)
- Location:
- main/waeup.custom/trunk/src/waeup/custom
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.custom/trunk/src/waeup/custom/interfaces.py
r7021 r7145 11 11 12 12 school_fee_base = schema.Int( 13 title = u'School Fee ',13 title = u'School Fee (ignored)', 14 14 default = 0, 15 15 ) -
main/waeup.custom/trunk/src/waeup/custom/students/browser.py
r6948 r7145 3 3 from zope.component import createObject 4 4 from waeup.sirp.students.browser import OnlinePaymentAddFormPage 5 from waeup.custom.students.utils import get PaymentDetails5 from waeup.custom.students.utils import get_payment_details 6 6 7 7 class OnlinePaymentAddFormPage(OnlinePaymentAddFormPage): … … 9 9 """ 10 10 11 def get PaymentDetails(self, category, student):12 return get PaymentDetails(category, student)11 def get_payment_details(self, category, student): 12 return get_payment_details(category, student) -
main/waeup.custom/trunk/src/waeup/custom/students/utils.py
r7021 r7145 3 3 from waeup.sirp.students.workflow import CLEARED, RETURNING 4 4 5 def get PaymentDetails(category, student):5 def get_payment_details(category, student): 6 6 d = {} 7 7 d['surcharge_1'] = d['surcharge_2'] = d['surcharge_3'] = 0
Note: See TracChangeset for help on using the changeset viewer.