- Timestamp:
- 21 Jul 2014, 12:38:28 (10 years ago)
- Location:
- main/waeup.kwarapoly/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kwarapoly/trunk/CHANGES.txt
r11682 r11766 4 4 1.2dev (unreleased) 5 5 =================== 6 7 * Adjust provider_amt and gateway_amt and dalash_amt for log_book 8 payments. 6 9 7 10 * Fix fee calculation for 'Loss of ID Card' payments. -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/interswitch/browser.py
r11760 r11766 141 141 self.pay_item_id = '122' 142 142 dalash_amt = 6.0 143 xmldict['dalash_amt'] = 100 * dalash_amt144 143 provider_amt = 9.0 145 144 gateway_amt = 15.0 … … 147 146 self.pay_item_id = '123' 148 147 dalash_amt = 3.0 149 xmldict['dalash_amt'] = 100 * dalash_amt150 148 provider_amt = 4.5 151 149 gateway_amt = 7.5 … … 169 167 self.pay_item_id = '132' 170 168 dalash_amt = 6.0 171 xmldict['dalash_amt'] = 100 * dalash_amt172 169 provider_amt = 9.0 173 170 gateway_amt = 15.0 … … 182 179 elif self.context.p_category == 'log_book': 183 180 self.pay_item_id = '137' 181 dalash_amt = 3.0 182 provider_amt = 4.5 183 gateway_amt = 7.5 184 184 xmldict['institution_acct'] = "1010508401" 185 185 xmldict['institution_bank_id'] = '117' … … 314 314 self.pay_item_id = '122' 315 315 dalash_amt = 6.0 316 xmldict['dalash_amt'] = 100 * dalash_amt317 316 provider_amt = 9.0 318 317 gateway_amt = 15.0 … … 320 319 self.pay_item_id = '123' 321 320 dalash_amt = 3.0 322 xmldict['dalash_amt'] = 100 * dalash_amt323 321 provider_amt = 4.5 324 322 gateway_amt = 7.5 … … 342 340 self.pay_item_id = '132' 343 341 dalash_amt = 6.0 344 xmldict['dalash_amt'] = 100 * dalash_amt345 342 provider_amt = 9.0 346 343 gateway_amt = 15.0 … … 355 352 elif self.context.p_category == 'log_book': 356 353 self.pay_item_id = '137' 354 dalash_amt = 3.0 355 provider_amt = 4.5 356 gateway_amt = 7.5 357 357 xmldict['institution_acct'] = "1010508401" 358 358 xmldict['institution_bank_id'] = '117'
Note: See TracChangeset for help on using the changeset viewer.