- Timestamp:
- 31 Oct 2019, 20:14:47 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/payments/interfaces.py
r15702 r15730 26 26 27 27 """ 28 29 net_amount = Attribute('Total amount minus surcharges') 28 30 29 31 ac = schema.TextLine( … … 107 109 ) 108 110 111 net_amt = schema.Float( 112 title = _(u'Net Amount'), 113 default = 0.0, 114 required = False, 115 readonly = True, 116 ) 117 118 INigeriaOnlinePayment['net_amt'].order = INigeriaOnlinePayment[ 119 'amount_auth'].order
Note: See TracChangeset for help on using the changeset viewer.