Changeset 12186 for main/waeup.ikoba/trunk/src/waeup/ikoba/payments
- Timestamp:
- 9 Dec 2014, 16:45:52 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba/payments
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/payments/catalog.py
r11954 r12186 30 30 31 31 p_id = grok.index.Field(attribute='p_id') 32 p_session = grok.index.Field(attribute='p_session')33 32 p_category = grok.index.Field(attribute='p_category') 34 33 p_item = grok.index.Field(attribute='p_item') -
main/waeup.ikoba/trunk/src/waeup/ikoba/payments/interfaces.py
r11949 r12186 19 19 from zope import schema 20 20 from waeup.ikoba.interfaces import ( 21 IIkobaObject, SimpleIkobaVocabulary, application_sessions_vocab,21 IIkobaObject, SimpleIkobaVocabulary, 22 22 ContextualDictSourceFactoryBase) 23 23 from waeup.ikoba.interfaces import MessageFactory as _ … … 64 64 required = False, 65 65 readonly = True, 66 )67 68 p_session = schema.Choice(69 title = _(u'Payment Session'),70 source = application_sessions_vocab,71 required = True,72 66 ) 73 67
Note: See TracChangeset for help on using the changeset viewer.