Changeset 7321 for main/waeup.sirp/trunk/src/waeup/sirp/payments
- Timestamp:
- 10 Dec 2011, 06:15:17 (13 years ago)
- 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 18 18 from zope.interface import Attribute 19 19 from zope import schema 20 from waeup.sirp.interfaces import I WAeUPObject20 from waeup.sirp.interfaces import ISIRPObject 21 21 from waeup.sirp.payments.vocabularies import ( 22 22 payment_states, payment_categories) 23 23 24 class IPaymentsContainer(I WAeUPObject):24 class IPaymentsContainer(ISIRPObject): 25 25 """A container for all kind of payment objects. 26 26 27 27 """ 28 28 29 class IPayment(I WAeUPObject):29 class IPayment(ISIRPObject): 30 30 """A base representation of payments. 31 31 -
main/waeup.sirp/trunk/src/waeup/sirp/payments/vocabularies.py
r7250 r7321 18 18 """Vocabularies and sources for payments. 19 19 """ 20 from waeup.sirp.interfaces import Simple WAeUPVocabulary20 from waeup.sirp.interfaces import SimpleSIRPVocabulary 21 21 22 payment_states = Simple WAeUPVocabulary(22 payment_states = SimpleSIRPVocabulary( 23 23 ('Not yet paid','unpaid'), 24 24 ('Paid','paid'), 25 25 ) 26 26 27 payment_categories = Simple WAeUPVocabulary(27 payment_categories = SimpleSIRPVocabulary( 28 28 ('School Fee','schoolfee'), 29 29 ('Clearance','clearance'),
Note: See TracChangeset for help on using the changeset viewer.