Ignore:
Timestamp:
30 Oct 2012, 17:49:17 (12 years ago)
Author:
Henrik Bettermann
Message:

Remove SCPayment components.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/payments/payment.py

    r9405 r9469  
    2727from waeup.kofa.interfaces import MessageFactory as _
    2828from waeup.kofa.payments.interfaces import (
    29     IPayment, ISCPayment, IOnlinePayment,
     29    IPayment, IOnlinePayment,
    3030    payment_states)
    3131from waeup.kofa.utils.helpers import attrs_to_fields, get_current_principal
     
    5252        utils = getUtility(IKofaUtils)
    5353        return utils.PAYMENT_CATEGORIES[self.p_category]
    54 
    55 # not used
    56 class SCPayment(Payment):
    57     """This is a scratch card payment.
    58     """
    59     grok.implements(ISCPayment)
    60     grok.provides(ISCPayment)
    61 
    62     def __init__(self):
    63         super(SCPayment, self).__init__()
    64         p_id = None
    65         return
    66 
    67 SCPayment = attrs_to_fields(SCPayment)
    6854
    6955class OnlinePayment(Payment):
Note: See TracChangeset for help on using the changeset viewer.