Changeset 15664 for main/waeup.kofa/trunk/src/waeup/kofa/payments
- Timestamp:
- 13 Oct 2019, 19:15:33 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/payments/interfaces.py
r13012 r15664 37 37 DICT_NAME = 'PAYMENT_CATEGORIES' 38 38 39 class CombiPaymentCategorySource(ContextualDictSourceFactoryBase): 40 """A payment category source delivers all categories of payments. 41 42 """ 43 #: name of dict to deliver from kofa utils. 44 DICT_NAME = 'COMBI_PAYMENT_CATEGORIES' 45 39 46 class IPaymentsContainer(IKofaObject): 40 47 """A container for all kind of payment objects. … … 59 66 default = None, 60 67 required = False, 68 ) 69 70 p_combi = schema.List( 71 title = _(u'Combi Payment'), 72 value_type = schema.Choice( 73 source = CombiPaymentCategorySource(), 74 ), 75 required = False, 76 defaultFactory=list, 61 77 ) 62 78
Note: See TracChangeset for help on using the changeset viewer.