Changeset 7927 for main/waeup.kofa/trunk/src/waeup/kofa/payments
- Timestamp:
- 20 Mar 2012, 14:20:04 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/payments/interfaces.py
r7875 r7927 79 79 ) 80 80 81 amount_auth = schema. Int(81 amount_auth = schema.Float( 82 82 title = _(u'Amount Authorized'), 83 default = 0 ,83 default = 0.0, 84 84 required = True, 85 85 readonly = True, … … 103 103 """ 104 104 105 surcharge_1 = schema. Int(105 surcharge_1 = schema.Float( 106 106 title = _(u'Portal Fee'), 107 default = 0 ,107 default = 0.0, 108 108 required = False, 109 109 readonly = True, 110 110 ) 111 111 112 surcharge_2 = schema. Int(112 surcharge_2 = schema.Float( 113 113 title = _(u'Surcharge 2'), 114 default = 0 ,114 default = 0.0, 115 115 required = False, 116 116 readonly = True, 117 117 ) 118 118 119 surcharge_3 = schema. Int(119 surcharge_3 = schema.Float( 120 120 title = _(u'Surcharge 3'), 121 default = 0 ,121 default = 0.0, 122 122 required = False, 123 123 readonly = True, … … 137 137 ) 138 138 139 r_amount_approved = schema. Int(139 r_amount_approved = schema.Float( 140 140 title = _(u'Response Amount Approved'), 141 default = 0 ,141 default = 0.0, 142 142 required = False, 143 143 readonly = False,
Note: See TracChangeset for help on using the changeset viewer.