class Ibandit::GermanDetailsConverter::Rule003200
Public Instance Methods
Source
# File lib/ibandit/german_details_converter.rb, line 801 def converted_details if @account_number.to_i.between?(800000000, 899999999) msg = "Account does not support payment transactions" raise UnsupportedAccountDetails, msg end updated_bank_code = Rule003101::BANK_CODE_MAPPING.fetch( @account_number.rjust(10, "0").slice(0, 3), @bank_code, ) { bank_code: updated_bank_code, account_number: @account_number } end