- Timestamp:
- 25 Mar 2021, 09:45:54 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/payments/interfaces.py
r15792 r16431 38 38 DICT_NAME = 'PAYMENT_CATEGORIES' 39 39 40 class PaymentOptionSource(ContextualDictSourceFactoryBase): 41 """A payment option source delivers all options of a payment. 42 43 """ 44 #: name of dict to deliver from kofa utils. 45 DICT_NAME = 'PAYMENT_OPTIONS' 46 40 47 class CombiPaymentCategorySource(ContextualDictSourceFactoryBase): 41 48 """A payment category source delivers all categories of payments. … … 61 68 source = PaymentCategorySource(), 62 69 required = True, 70 ) 71 72 p_option = schema.Choice( 73 title = _(u'Payment Option'), 74 source = PaymentOptionSource(), 75 required = False, 63 76 ) 64 77
Note: See TracChangeset for help on using the changeset viewer.