source:
main/waeup.custom/trunk/src/waeup/custom/students/browser.py
@
7062
Last change on this file since 7062 was 6948, checked in by , 13 years ago | |
---|---|
|
|
File size: 414 bytes |
Rev | Line | |
---|---|---|
[6902] | 1 | import grok |
2 | from time import time | |
3 | from zope.component import createObject | |
4 | from waeup.sirp.students.browser import OnlinePaymentAddFormPage | |
5 | from waeup.custom.students.utils import getPaymentDetails | |
6 | ||
7 | class OnlinePaymentAddFormPage(OnlinePaymentAddFormPage): | |
8 | """ Page to add an online payment ticket | |
9 | """ | |
10 | ||
[6948] | 11 | def getPaymentDetails(self, category, student): |
12 | return getPaymentDetails(category, student) |
Note: See TracBrowser for help on using the repository browser.