Ignore:
Timestamp:
10 Dec 2011, 06:15:17 (13 years ago)
Author:
Henrik Bettermann
Message:

Replace the term 'WAeUP' by SIRP which is a WAeUP product.

Location:
main/waeup.sirp/trunk/src/waeup/sirp/payments
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/payments/interfaces.py

    r7195 r7321  
    1818from zope.interface import Attribute
    1919from zope import schema
    20 from waeup.sirp.interfaces import IWAeUPObject
     20from waeup.sirp.interfaces import ISIRPObject
    2121from waeup.sirp.payments.vocabularies import (
    2222    payment_states, payment_categories)
    2323
    24 class IPaymentsContainer(IWAeUPObject):
     24class IPaymentsContainer(ISIRPObject):
    2525    """A container for all kind of payment objects.
    2626
    2727    """
    2828
    29 class IPayment(IWAeUPObject):
     29class IPayment(ISIRPObject):
    3030    """A base representation of payments.
    3131
  • main/waeup.sirp/trunk/src/waeup/sirp/payments/vocabularies.py

    r7250 r7321  
    1818"""Vocabularies and sources for payments.
    1919"""
    20 from waeup.sirp.interfaces import SimpleWAeUPVocabulary
     20from waeup.sirp.interfaces import SimpleSIRPVocabulary
    2121
    22 payment_states = SimpleWAeUPVocabulary(
     22payment_states = SimpleSIRPVocabulary(
    2323    ('Not yet paid','unpaid'),
    2424    ('Paid','paid'),
    2525    )
    2626
    27 payment_categories = SimpleWAeUPVocabulary(
     27payment_categories = SimpleSIRPVocabulary(
    2828    ('School Fee','schoolfee'),
    2929    ('Clearance','clearance'),
Note: See TracChangeset for help on using the changeset viewer.