Ignore:
Timestamp:
10 Feb 2012, 12:08:47 (13 years ago)
Author:
Henrik Bettermann
Message:

Implement first version of payment importer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/payments/interfaces.py

    r7321 r7623  
    5555    creation_date = schema.Datetime(
    5656        title = u'Ticket Creation Date',
    57         readonly = True,
     57        readonly = False,
    5858        )
    5959
     
    129129        )
    130130
     131    r_desc = schema.TextLine(
     132        title = u'Response Description',
     133        default = None,
     134        required = False,
     135        readonly = False,
     136        )
     137
     138    r_pay_reference = schema.TextLine(
     139        title = u'Response Payment Reference',
     140        default = None,
     141        required = False,
     142        readonly = False,
     143        )
     144
    131145    r_code = schema.TextLine(
    132146        title = u'Response Code',
Note: See TracChangeset for help on using the changeset viewer.