import grok
from time import time
from zope.component import createObject
from waeup.sirp.students.browser import OnlinePaymentAddFormPage
from waeup.custom.students.utils import getPaymentDetails

class OnlinePaymentAddFormPage(OnlinePaymentAddFormPage):
    """ Page to add an online payment ticket
    """

    def getPaymentDetails(self, category, student):
        return getPaymentDetails(category, student)
