Changeset 12098 for main/waeup.ikoba/trunk/src/waeup/ikoba/products
- Timestamp:
- 30 Nov 2014, 21:00:30 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/products/interfaces.py
r12097 r12098 23 23 from waeup.ikoba.interfaces import MessageFactory as _ 24 24 25 class AppCatSource(ContextualDictSourceFactoryBase):25 class ConCatSource(ContextualDictSourceFactoryBase): 26 26 """A contract category source delivers all contract categories 27 27 provided in the portal. 28 28 """ 29 29 #: name of dict to deliver from kofa utils. 30 DICT_NAME = ' APP_CATS_DICT'30 DICT_NAME = 'CON_CATS_DICT' 31 31 32 32 class IProductsContainer(IIkobaObject): … … 57 57 contract_category = schema.Choice( 58 58 title = _(u'Contract Category'), 59 source = AppCatSource(),59 source = ConCatSource(), 60 60 default = u'license', 61 61 required = True,
Note: See TracChangeset for help on using the changeset viewer.