Changeset 7819 for main/waeup.kofa/trunk/src/waeup/kofa/payments
- Timestamp:
- 8 Mar 2012, 22:28:46 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/payments/interfaces.py
r7811 r7819 18 18 from zope.interface import Attribute 19 19 from zope import schema 20 from waeup.kofa.interfaces import IK OFAObject, SimpleKOFAVocabulary20 from waeup.kofa.interfaces import IKofaObject, SimpleKofaVocabulary 21 21 from waeup.kofa.interfaces import MessageFactory as _ 22 22 23 payment_states = SimpleK OFAVocabulary(23 payment_states = SimpleKofaVocabulary( 24 24 (_('Not yet paid'),'unpaid'), 25 25 (_('Paid'),'paid'), … … 27 27 ) 28 28 29 payment_categories = SimpleK OFAVocabulary(29 payment_categories = SimpleKofaVocabulary( 30 30 (_('School Fee'),'schoolfee'), 31 31 (_('Clearance'),'clearance'), … … 37 37 ) 38 38 39 class IPaymentsContainer(IK OFAObject):39 class IPaymentsContainer(IKofaObject): 40 40 """A container for all kind of payment objects. 41 41 42 42 """ 43 43 44 class IPayment(IK OFAObject):44 class IPayment(IKofaObject): 45 45 """A base representation of payments. 46 46
Note: See TracChangeset for help on using the changeset viewer.