Ignore:
Timestamp:
6 Dec 2012, 08:39:26 (12 years ago)
Author:
Henrik Bettermann
Message:

Add function to write csv 'messages' into payments.log. The helper function is tested in custom packages.

Add payment attributes which store split amount values.

File:
1 edited

Legend:

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

    r9468 r9774  
    8282        )
    8383
     84    provider_amt = schema.Float(
     85        title = _(u'BT Amount'),
     86        default = 0.0,
     87        required = False,
     88        readonly = False,
     89        )
     90
     91    gateway_amt = schema.Float(
     92        title = _(u'Gateway Amount'),
     93        default = 0.0,
     94        required = False,
     95        readonly = False,
     96        )
     97
     98    thirdparty_amt = schema.Float(
     99        title = _(u'Third Party Amount'),
     100        default = 0.0,
     101        required = False,
     102        readonly = False,
     103        )
     104
Note: See TracChangeset for help on using the changeset viewer.