- Timestamp:
- 13 Nov 2014, 14:40:27 (10 years ago)
- Location:
- main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/henrik-regista/src/waeup/ikoba/payments/interfaces.py
r11947 r11949 18 18 from zope.interface import Attribute 19 19 from zope import schema 20 from waeup. kofa.interfaces import (21 I KofaObject, SimpleKofaVocabulary, application_sessions_vocab,20 from waeup.ikoba.interfaces import ( 21 IIkobaObject, SimpleIkobaVocabulary, application_sessions_vocab, 22 22 ContextualDictSourceFactoryBase) 23 from waeup. kofa.interfaces import MessageFactory as _23 from waeup.ikoba.interfaces import MessageFactory as _ 24 24 25 payment_states = Simple KofaVocabulary(25 payment_states = SimpleIkobaVocabulary( 26 26 (_('Not yet paid'),'unpaid'), 27 27 (_('Paid'),'paid'), … … 33 33 34 34 """ 35 #: name of dict to deliver from kofa utils.35 #: name of dict to deliver from ikoba utils. 36 36 DICT_NAME = 'PAYMENT_CATEGORIES' 37 37 38 class IPaymentsContainer(I KofaObject):38 class IPaymentsContainer(IIkobaObject): 39 39 """A container for all kind of payment objects. 40 40 41 41 """ 42 42 43 class IPayment(I KofaObject):43 class IPayment(IIkobaObject): 44 44 """A base representation of payments. 45 45
Note: See TracChangeset for help on using the changeset viewer.