Ignore:
Timestamp:
8 Jul 2012, 09:00:33 (12 years ago)
Author:
Henrik Bettermann
Message:

Add r_company field.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/payments/interfaces.py

    r8904 r8943  
    1818from zope.interface import Attribute
    1919from zope import schema
     20from waeup.kofa.interfaces import SimpleKofaVocabulary
    2021from waeup.kofa.payments.interfaces import IPayment
    2122from kofacustom.nigeria.interfaces import MessageFactory as _
     
    6970        readonly = False,
    7071        )
     72
     73    r_company = schema.Choice(
     74        title = _(u'Payment Gateway'),
     75        default = None,
     76        required = False,
     77        readonly = False,
     78        vocabulary = SimpleKofaVocabulary(
     79            (_('Interswitch'), 'interswitch'),
     80            (_('eTranzact'), 'etranzact'),)
     81        )
     82
Note: See TracChangeset for help on using the changeset viewer.