zilverline-mt940 1.0 → 2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/Gemfile.lock +1 -1
- data/README.md +5 -4
- data/lib/mt940.rb +1 -6
- data/lib/mt940/version.rb +2 -2
- data/lib/mt940_structured/file_content.rb +46 -0
- data/lib/mt940_structured/header.rb +30 -0
- data/lib/mt940_structured/mt940_structured.rb +8 -0
- data/lib/mt940_structured/parser.rb +18 -0
- data/lib/mt940_structured/parsers/abnamro/abnamro.rb +5 -0
- data/lib/mt940_structured/parsers/abnamro/parser.rb +15 -0
- data/lib/mt940_structured/parsers/abnamro/transaction_parser.rb +55 -0
- data/lib/mt940_structured/parsers/balance_parser.rb +12 -0
- data/lib/mt940_structured/parsers/bank_statement_parser.rb +59 -0
- data/lib/mt940_structured/parsers/base.rb +34 -0
- data/lib/mt940_structured/parsers/date_parser.rb +7 -0
- data/lib/mt940_structured/parsers/default_line61_parser.rb +25 -0
- data/lib/mt940_structured/parsers/iban_support.rb +15 -0
- data/lib/mt940_structured/parsers/ing/ing.rb +7 -0
- data/lib/mt940_structured/parsers/ing/parser.rb +18 -0
- data/lib/mt940_structured/parsers/ing/structured_transaction_parser.rb +50 -0
- data/lib/mt940_structured/parsers/ing/transaction_parser.rb +31 -0
- data/lib/mt940_structured/parsers/ing/types.rb +26 -0
- data/lib/mt940_structured/parsers/parsers.rb +16 -0
- data/lib/mt940_structured/parsers/rabobank/parser.rb +13 -0
- data/lib/mt940_structured/parsers/rabobank/rabobank.rb +8 -0
- data/lib/mt940_structured/parsers/rabobank/structured_transaction_parser.rb +41 -0
- data/lib/mt940_structured/parsers/rabobank/transaction_parser.rb +29 -0
- data/lib/mt940_structured/parsers/rabobank/types.rb +714 -0
- data/lib/mt940_structured/parsers/structured_description_parser.rb +12 -0
- data/lib/mt940_structured/parsers/tridios/parser.rb +14 -0
- data/lib/mt940_structured/parsers/tridios/transaction_parser.rb +23 -0
- data/lib/mt940_structured/parsers/tridios/triodos.rb +5 -0
- data/spec/fixtures/ing/eu_incasso.txt +17 -0
- data/spec/fixtures/ing/eu_incasso_foreign_transaction.txt +17 -0
- data/spec/fixtures/ing/failing.txt +18 -0
- data/spec/mt940_abnamro_spec.rb +18 -6
- data/spec/mt940_ing_spec.rb +78 -2
- data/spec/mt940_rabobank_spec.rb +11 -11
- data/spec/mt940_structured/file_content_spec.rb +77 -0
- data/spec/mt940_structured/header_spec.rb +32 -0
- data/spec/mt940_structured/parsers/rabobank/bank_statement_parser_spec.rb +32 -0
- data/spec/mt940_triodos_spec.rb +1 -1
- data/spec/mt940_two_accounts_spec.rb +1 -1
- metadata +41 -9
- data/lib/mt940/banks/abnamro.rb +0 -76
- data/lib/mt940/banks/ing.rb +0 -84
- data/lib/mt940/banks/rabobank.rb +0 -770
- data/lib/mt940/banks/triodos.rb +0 -20
- data/lib/mt940/base.rb +0 -165
- data/lib/mt940/structured_format.rb +0 -16
- data/spec/mt940_base_spec.rb +0 -48
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe MT940Structured::Header do
|
4
|
+
|
5
|
+
subject { MT940Structured::Header.new(lines).parser }
|
6
|
+
|
7
|
+
context "Rabobank" do
|
8
|
+
let(:lines) { [":940:", ":20:940A121001", ":25:2121.21.211EUR"] }
|
9
|
+
it { should be_kind_of(MT940Structured::Parsers::Rabobank::Parser) }
|
10
|
+
end
|
11
|
+
|
12
|
+
context "ING" do
|
13
|
+
let(:lines) { ["0000 01INGBNL2AXXXX00001", "0000 01INGBNL2AXXXX00001", "940 00", ":20:MPBZ", ":25:0001234567"] }
|
14
|
+
it { should be_kind_of(MT940Structured::Parsers::Ing::Parser) }
|
15
|
+
end
|
16
|
+
|
17
|
+
context "ABN Amro" do
|
18
|
+
let(:lines) { ["ABNANL2A", "940", "ABNANL2A", ":20:ABN AMRO BANK NV", ":25:517852257"] }
|
19
|
+
it { should be_kind_of(MT940Structured::Parsers::Abnamro::Parser) }
|
20
|
+
end
|
21
|
+
|
22
|
+
context "Triodos bank" do
|
23
|
+
let(:lines) { [":20:1308728725026/1", ":25:TRIODOSBANK/0390123456", ":28:1"] }
|
24
|
+
it { should be_kind_of(MT940Structured::Parsers::Triodos::Parser) }
|
25
|
+
end
|
26
|
+
|
27
|
+
context "Unknown bank" do
|
28
|
+
let(:lines) { ["kjdshfgkljdsfg"] }
|
29
|
+
it { expect { subject }.to raise_error(MT940Structured::UnsupportedBankError) }
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe MT940Structured::Parsers::BankStatementParser do
|
4
|
+
|
5
|
+
let(:transaction_parsers) { MT940Structured::Parsers::Rabobank::TransactionParsers.new }
|
6
|
+
subject { MT940Structured::Parsers::BankStatementParser.new("Rabobank", transaction_parsers, lines).bank_statement }
|
7
|
+
|
8
|
+
context "structured" do
|
9
|
+
let(:lines) do
|
10
|
+
[
|
11
|
+
":25:NL50RABO0123456789",
|
12
|
+
":28C:0",
|
13
|
+
":60F:C130402EUR000000001147,95",
|
14
|
+
":61:130403D000000000127,50N102EREF NL96RBOS0523149468",
|
15
|
+
":86:/EREF/02-04-2013 22:56 1120000153447185/BENM//NAME/Nespresso Nede rland B.V./REMI/674725433 1120000153447185 14144467636004962 /ISDT/2013-04-03",
|
16
|
+
":62F:C130404EUR000000018846,34"
|
17
|
+
]
|
18
|
+
end
|
19
|
+
it { should be_kind_of(MT940::BankStatement) }
|
20
|
+
its(:bank_account) { should eq "123456789" }
|
21
|
+
its(:bank_account_iban) { should eq("NL50RABO0123456789") }
|
22
|
+
its(:previous_balance) { should eq(MT940::Balance.new(1147.95, Date.new(2013, 4, 2), "EUR")) }
|
23
|
+
its(:new_balance) { should eq(MT940::Balance.new(18846.34, Date.new(2013, 4, 4), "EUR")) }
|
24
|
+
|
25
|
+
it "has 1 transaction" do
|
26
|
+
expect(subject.transactions).to have(1).item
|
27
|
+
expect(subject.transactions.first).to be_kind_of MT940::Transaction
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
end
|
data/spec/mt940_triodos_spec.rb
CHANGED
@@ -4,7 +4,7 @@ describe "Triodos" do
|
|
4
4
|
|
5
5
|
before :each do
|
6
6
|
@file_name = File.dirname(__FILE__) + '/fixtures/triodos.txt'
|
7
|
-
@bank_statements =
|
7
|
+
@bank_statements = MT940Structured::Parser.parse_mt940(@file_name)["390123456"]
|
8
8
|
@transactions = @bank_statements.flat_map(&:transactions)
|
9
9
|
@transaction = @transactions.first
|
10
10
|
end
|
@@ -3,7 +3,7 @@ require_relative 'spec_helper'
|
|
3
3
|
describe "two accounts" do
|
4
4
|
before :each do
|
5
5
|
@file_name = File.dirname(__FILE__) + '/fixtures/two_accounts.txt'
|
6
|
-
@bank_statements =
|
6
|
+
@bank_statements = MT940Structured::Parser.parse_mt940(@file_name)
|
7
7
|
end
|
8
8
|
|
9
9
|
it 'have the correct number of bank accounts' do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zilverline-mt940
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '
|
4
|
+
version: '2.0'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lars Vonk
|
@@ -59,18 +59,43 @@ files:
|
|
59
59
|
- Rakefile
|
60
60
|
- lib/mt940.rb
|
61
61
|
- lib/mt940/bank_statement.rb
|
62
|
-
- lib/mt940/banks/abnamro.rb
|
63
|
-
- lib/mt940/banks/ing.rb
|
64
|
-
- lib/mt940/banks/rabobank.rb
|
65
|
-
- lib/mt940/banks/triodos.rb
|
66
|
-
- lib/mt940/base.rb
|
67
|
-
- lib/mt940/structured_format.rb
|
68
62
|
- lib/mt940/transaction.rb
|
69
63
|
- lib/mt940/version.rb
|
64
|
+
- lib/mt940_structured/file_content.rb
|
65
|
+
- lib/mt940_structured/header.rb
|
66
|
+
- lib/mt940_structured/mt940_structured.rb
|
67
|
+
- lib/mt940_structured/parser.rb
|
68
|
+
- lib/mt940_structured/parsers/abnamro/abnamro.rb
|
69
|
+
- lib/mt940_structured/parsers/abnamro/parser.rb
|
70
|
+
- lib/mt940_structured/parsers/abnamro/transaction_parser.rb
|
71
|
+
- lib/mt940_structured/parsers/balance_parser.rb
|
72
|
+
- lib/mt940_structured/parsers/bank_statement_parser.rb
|
73
|
+
- lib/mt940_structured/parsers/base.rb
|
74
|
+
- lib/mt940_structured/parsers/date_parser.rb
|
75
|
+
- lib/mt940_structured/parsers/default_line61_parser.rb
|
76
|
+
- lib/mt940_structured/parsers/iban_support.rb
|
77
|
+
- lib/mt940_structured/parsers/ing/ing.rb
|
78
|
+
- lib/mt940_structured/parsers/ing/parser.rb
|
79
|
+
- lib/mt940_structured/parsers/ing/structured_transaction_parser.rb
|
80
|
+
- lib/mt940_structured/parsers/ing/transaction_parser.rb
|
81
|
+
- lib/mt940_structured/parsers/ing/types.rb
|
82
|
+
- lib/mt940_structured/parsers/parsers.rb
|
83
|
+
- lib/mt940_structured/parsers/rabobank/parser.rb
|
84
|
+
- lib/mt940_structured/parsers/rabobank/rabobank.rb
|
85
|
+
- lib/mt940_structured/parsers/rabobank/structured_transaction_parser.rb
|
86
|
+
- lib/mt940_structured/parsers/rabobank/transaction_parser.rb
|
87
|
+
- lib/mt940_structured/parsers/rabobank/types.rb
|
88
|
+
- lib/mt940_structured/parsers/structured_description_parser.rb
|
89
|
+
- lib/mt940_structured/parsers/tridios/parser.rb
|
90
|
+
- lib/mt940_structured/parsers/tridios/transaction_parser.rb
|
91
|
+
- lib/mt940_structured/parsers/tridios/triodos.rb
|
70
92
|
- mt940.gemspec
|
71
93
|
- spec/fixtures/abnamro.txt
|
72
94
|
- spec/fixtures/abnamro_structured.txt
|
73
95
|
- spec/fixtures/ing.txt
|
96
|
+
- spec/fixtures/ing/eu_incasso.txt
|
97
|
+
- spec/fixtures/ing/eu_incasso_foreign_transaction.txt
|
98
|
+
- spec/fixtures/ing/failing.txt
|
74
99
|
- spec/fixtures/ing_structured.txt
|
75
100
|
- spec/fixtures/rabobank.txt
|
76
101
|
- spec/fixtures/rabobank_mt940_structured.txt
|
@@ -83,9 +108,11 @@ files:
|
|
83
108
|
- spec/fixtures/two_accounts.txt
|
84
109
|
- spec/fixtures/unknown.txt
|
85
110
|
- spec/mt940_abnamro_spec.rb
|
86
|
-
- spec/mt940_base_spec.rb
|
87
111
|
- spec/mt940_ing_spec.rb
|
88
112
|
- spec/mt940_rabobank_spec.rb
|
113
|
+
- spec/mt940_structured/file_content_spec.rb
|
114
|
+
- spec/mt940_structured/header_spec.rb
|
115
|
+
- spec/mt940_structured/parsers/rabobank/bank_statement_parser_spec.rb
|
89
116
|
- spec/mt940_triodos_spec.rb
|
90
117
|
- spec/mt940_two_accounts_spec.rb
|
91
118
|
- spec/spec_helper.rb
|
@@ -117,6 +144,9 @@ test_files:
|
|
117
144
|
- spec/fixtures/abnamro.txt
|
118
145
|
- spec/fixtures/abnamro_structured.txt
|
119
146
|
- spec/fixtures/ing.txt
|
147
|
+
- spec/fixtures/ing/eu_incasso.txt
|
148
|
+
- spec/fixtures/ing/eu_incasso_foreign_transaction.txt
|
149
|
+
- spec/fixtures/ing/failing.txt
|
120
150
|
- spec/fixtures/ing_structured.txt
|
121
151
|
- spec/fixtures/rabobank.txt
|
122
152
|
- spec/fixtures/rabobank_mt940_structured.txt
|
@@ -129,9 +159,11 @@ test_files:
|
|
129
159
|
- spec/fixtures/two_accounts.txt
|
130
160
|
- spec/fixtures/unknown.txt
|
131
161
|
- spec/mt940_abnamro_spec.rb
|
132
|
-
- spec/mt940_base_spec.rb
|
133
162
|
- spec/mt940_ing_spec.rb
|
134
163
|
- spec/mt940_rabobank_spec.rb
|
164
|
+
- spec/mt940_structured/file_content_spec.rb
|
165
|
+
- spec/mt940_structured/header_spec.rb
|
166
|
+
- spec/mt940_structured/parsers/rabobank/bank_statement_parser_spec.rb
|
135
167
|
- spec/mt940_triodos_spec.rb
|
136
168
|
- spec/mt940_two_accounts_spec.rb
|
137
169
|
- spec/spec_helper.rb
|
data/lib/mt940/banks/abnamro.rb
DELETED
@@ -1,76 +0,0 @@
|
|
1
|
-
class MT940::Abnamro < MT940::Base
|
2
|
-
include MT940::StructuredFormat
|
3
|
-
|
4
|
-
def self.determine_bank(*args)
|
5
|
-
self if args[0].match(/ABNANL/)
|
6
|
-
end
|
7
|
-
|
8
|
-
def mt_940_start_line?(line)
|
9
|
-
super || line.match(/ABNANL/)
|
10
|
-
end
|
11
|
-
|
12
|
-
def parse_tag_61
|
13
|
-
if @line.match(/^:61:(\d{6})\d{4}(C|D)(\d+),(\d{0,2})/)
|
14
|
-
type = $2 == 'D' ? -1 : 1
|
15
|
-
@transaction = MT940::Transaction.new(:bank_account => @bank_account, :amount => type * ($3 + '.' + $4).to_f, :bank => @bank, :currency => @currency)
|
16
|
-
@transaction.date = parse_date($1)
|
17
|
-
@bank_statement.transactions << @transaction
|
18
|
-
@tag86 = false
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
def parse_contra_account
|
23
|
-
if @transaction
|
24
|
-
|
25
|
-
case @transaction.description
|
26
|
-
when /^(GIRO)\s+(\d+)(.+)/
|
27
|
-
@transaction.contra_account = $2.rjust(9, '000000000')
|
28
|
-
@transaction.description = $3
|
29
|
-
when /^(\d{2}.\d{2}.\d{2}.\d{3})(.+)/
|
30
|
-
@transaction.description = $2.strip
|
31
|
-
@transaction.contra_account = $1.gsub('.', '')
|
32
|
-
when /\/TRTP\/SEPA OVERBOEKING/
|
33
|
-
description_parts = @line[4..-1].split('/')
|
34
|
-
@transaction.contra_account_iban = parse_description_after_tag description_parts, "IBAN"
|
35
|
-
@transaction.contra_account = iban_to_account @transaction.contra_account_iban
|
36
|
-
@transaction.contra_account_owner = parse_description_after_tag description_parts, "NAME"
|
37
|
-
@transaction.description = parse_description_after_tag description_parts, "REMI"
|
38
|
-
when /SEPA IDEAL/
|
39
|
-
read_all_description_lines!
|
40
|
-
full_description = @transaction.description
|
41
|
-
if full_description.match /OMSCHRIJVING\:(.+)?/
|
42
|
-
@transaction.description = $1.strip
|
43
|
-
end
|
44
|
-
if full_description.match /IBAN\:(.+)?BIC\:/
|
45
|
-
@transaction.contra_account_iban = $1.strip
|
46
|
-
@transaction.contra_account = iban_to_account @transaction.contra_account_iban
|
47
|
-
end
|
48
|
-
if full_description.match /NAAM\:(.+)?OMSCHRIJVING\:/
|
49
|
-
@transaction.contra_account_owner = $1.strip
|
50
|
-
end
|
51
|
-
when /SEPA ACCEPTGIROBETALING/
|
52
|
-
read_all_description_lines!
|
53
|
-
full_description = @transaction.description
|
54
|
-
if full_description.match /(BETALINGSKENM\.\:.+)/
|
55
|
-
@transaction.description = $1.strip
|
56
|
-
end
|
57
|
-
if full_description.match /IBAN\:(.+)?BIC\:/
|
58
|
-
@transaction.contra_account_iban = $1.strip
|
59
|
-
@transaction.contra_account = iban_to_account @transaction.contra_account_iban
|
60
|
-
end
|
61
|
-
if full_description.match /NAAM\:(.+)?BETALINGSKENM\.\:/
|
62
|
-
@transaction.contra_account_owner = $1.strip
|
63
|
-
end
|
64
|
-
else
|
65
|
-
@skip_parse_line = false
|
66
|
-
end
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
|
-
private
|
71
|
-
|
72
|
-
def iban_to_account(iban)
|
73
|
-
!iban.nil? ? iban.split(//).last(10).join.gsub(/^0+/, '') : nil
|
74
|
-
end
|
75
|
-
|
76
|
-
end
|
data/lib/mt940/banks/ing.rb
DELETED
@@ -1,84 +0,0 @@
|
|
1
|
-
class MT940::Ing < MT940::Base
|
2
|
-
|
3
|
-
IBAN_BIC_R = /^([a-zA-Z]{2}[0-9]{2}[a-zA-Z0-9]{0,30})(?:\s)([a-zA-Z0-9]{8,11})(?:\s)(.*)/
|
4
|
-
CONTRA_ACCOUNT_DESCRIPTION_R = /^(.*)(?:\s)(?:NOTPROVIDED)(?:\s)(.*)/
|
5
|
-
|
6
|
-
|
7
|
-
def self.determine_bank(*args)
|
8
|
-
self if args[0].match(/INGBNL/)
|
9
|
-
end
|
10
|
-
|
11
|
-
def parse_tag_61
|
12
|
-
|
13
|
-
@is_structured_format = @line.match /EREF|PREF|MARF|\d{16}/
|
14
|
-
|
15
|
-
if @line.match(/^:61:(\d{6})(C|D)(\d+),(\d{0,2})N(\S+)/)
|
16
|
-
sign = $2 == 'D' ? -1 : 1
|
17
|
-
@transaction = MT940::Transaction.new(:bank_account => @bank_account, :amount => sign * ($3 + '.' + $4).to_f, :bank => @bank, :currency => @currency)
|
18
|
-
@transaction.type = human_readable_type($5.strip)
|
19
|
-
@transaction.date = parse_date($1)
|
20
|
-
@bank_statement.transactions << @transaction
|
21
|
-
@tag86 = false
|
22
|
-
else
|
23
|
-
raise @line
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
def parse_tag_62F
|
28
|
-
super
|
29
|
-
@tag86 = true
|
30
|
-
end
|
31
|
-
|
32
|
-
def parse_contra_account
|
33
|
-
if @is_structured_format && @transaction && @transaction.description.match(IBAN_BIC_R)
|
34
|
-
parse_structured_description $1, $3
|
35
|
-
elsif @transaction && @transaction.description.match(/([P|\d]\d{9})?(.+)/)
|
36
|
-
parse_description $1, $2
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
def human_readable_type(type)
|
41
|
-
ING_MAPPING[type.strip] || type.strip
|
42
|
-
end
|
43
|
-
|
44
|
-
ING_MAPPING = {}
|
45
|
-
ING_MAPPING["AC"]= "Acceptgiro"
|
46
|
-
ING_MAPPING["BA"]= "Betaalautomaattransactie"
|
47
|
-
ING_MAPPING["CH"]= "Cheque"
|
48
|
-
ING_MAPPING["DV"]= "Diversen"
|
49
|
-
ING_MAPPING["FL"]= "Filiaalboeking, concernboeking"
|
50
|
-
ING_MAPPING["GF"]= "Telefonisch bankieren"
|
51
|
-
ING_MAPPING["GM"]= "Geldautomaat"
|
52
|
-
ING_MAPPING["GT"]= "Internetbankieren"
|
53
|
-
ING_MAPPING["IC"]= "Incasso"
|
54
|
-
ING_MAPPING["OV"]= "Overschrijving"
|
55
|
-
ING_MAPPING["PK"]= "Opname kantoor"
|
56
|
-
ING_MAPPING["PO"]= "Periodieke overschrijving"
|
57
|
-
ING_MAPPING["ST"]= "ST Storting (eigen rekening of derde)"
|
58
|
-
ING_MAPPING["VZ"]= "Verzamelbetaling"
|
59
|
-
ING_MAPPING["Code"]= "Toelichting"
|
60
|
-
ING_MAPPING["CHK"]= "Cheque"
|
61
|
-
ING_MAPPING["TRF"]= "Overboeking buitenland"
|
62
|
-
|
63
|
-
private
|
64
|
-
# introduced by IBAN
|
65
|
-
def parse_structured_description(iban, description)
|
66
|
-
@transaction.contra_account_iban=iban
|
67
|
-
@transaction.description=description
|
68
|
-
@transaction.contra_account=@transaction.contra_account_iban[8..-1].sub(/^0+/, '') if @transaction.contra_account_iban.match /^NL/
|
69
|
-
if @transaction.description.match CONTRA_ACCOUNT_DESCRIPTION_R
|
70
|
-
@transaction.contra_account_owner=$1
|
71
|
-
@transaction.description=$2
|
72
|
-
end
|
73
|
-
end
|
74
|
-
|
75
|
-
def parse_description(account_number, description)
|
76
|
-
@transaction.description = description.strip
|
77
|
-
number = account_number
|
78
|
-
unless number.nil?
|
79
|
-
@transaction.contra_account = number.gsub(/\D/, '').gsub(/^0+/, '')
|
80
|
-
else
|
81
|
-
@transaction.contra_account = "NONREF"
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
data/lib/mt940/banks/rabobank.rb
DELETED
@@ -1,770 +0,0 @@
|
|
1
|
-
class MT940::Rabobank < MT940::Base
|
2
|
-
include MT940::StructuredFormat
|
3
|
-
|
4
|
-
def self.determine_bank(*args)
|
5
|
-
self if args[0].match(/^:940:/)
|
6
|
-
end
|
7
|
-
|
8
|
-
def parse_tag_61
|
9
|
-
if @is_structured_format
|
10
|
-
valuta_date = parse_date(@line[4, 6])
|
11
|
-
sign = @line[10, 1] == 'D' ? -1 : 1
|
12
|
-
amount = sign * @line[11, 15].gsub(',', '.').to_f
|
13
|
-
transaction_type = human_readable_type(@line[27, 3])
|
14
|
-
parts = @line.split(/\r?\n/)
|
15
|
-
contra_account_iban = parts.size > 1 ? parts.last.gsub(/^[P]{0,1}0*/, '') : nil
|
16
|
-
number = contra_account_iban.nil? ? "NONREF" : contra_account_iban.strip.split(//).last(10).join.gsub(/^0+/, '')
|
17
|
-
@transaction = MT940::Transaction.new(bank_account: @bank_account,
|
18
|
-
bank_account_iban: @bank_account_iban,
|
19
|
-
amount: amount,
|
20
|
-
bank: @bank,
|
21
|
-
currency: @currency,
|
22
|
-
type: transaction_type,
|
23
|
-
date: valuta_date,
|
24
|
-
contra_account_iban: contra_account_iban,
|
25
|
-
contra_account: number)
|
26
|
-
elsif @line.match(/^:61:(\d{6})(C|D)(\d+),(\d{0,2})N(.{3})([P|\d]\d{9}|NONREF)\s*(.+)?$/)
|
27
|
-
sign = $2 == 'D' ? -1 : 1
|
28
|
-
@transaction = MT940::Transaction.new(:bank_account => @bank_account, :amount => sign * ($3 + '.' + $4).to_f, :bank => @bank, :currency => @currency)
|
29
|
-
@transaction.type = human_readable_type($5)
|
30
|
-
@transaction.date = parse_date($1)
|
31
|
-
number = $6.strip
|
32
|
-
name = $7 || ""
|
33
|
-
number = number.gsub(/\D/, '').gsub(/^0+/, '') unless number == 'NONREF'
|
34
|
-
@transaction.contra_account = number
|
35
|
-
@transaction.contra_account_owner = name.strip
|
36
|
-
else
|
37
|
-
raise @line
|
38
|
-
end
|
39
|
-
@bank_statement.transactions << @transaction
|
40
|
-
end
|
41
|
-
|
42
|
-
def parse_tag_86
|
43
|
-
if @is_structured_format
|
44
|
-
@transaction.description = @line[4..-1]
|
45
|
-
read_all_description_lines!
|
46
|
-
@skip_parse_line = false
|
47
|
-
description_parts = @transaction.description.split('/')
|
48
|
-
@transaction.description = parse_description_after_tag description_parts, "REMI"
|
49
|
-
if @transaction.description == ''
|
50
|
-
structured_betalingskenmerk = parse_description_after_tag(description_parts, "CDTRREF")
|
51
|
-
@transaction.description = "BETALINGSKENMERK #{structured_betalingskenmerk}" unless structured_betalingskenmerk == ''
|
52
|
-
end
|
53
|
-
@transaction.contra_account_owner = description_parts[description_parts.index { |part| part == "NAME" } + 1].gsub(/\r|\n/, '') if description_parts.index { |part| part == "NAME" }
|
54
|
-
elsif @line.match(/^:86:(.*)$/)
|
55
|
-
@transaction.description = [@transaction.description, $1].join(" ").strip
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
def human_readable_type(type)
|
60
|
-
if type.match(/\d+/)
|
61
|
-
MAPPING[type.to_i] || type.to_s
|
62
|
-
elsif type == "MSC"
|
63
|
-
"MSC"
|
64
|
-
else
|
65
|
-
type.to_s
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
#PAYMENT_TYPES MUT.TXT: {"AC" => "Acceptgiro", "BA" => "Betaalautomaat", "BG" => "Bankgiro", "BY" => "Bijschrijving", "CB" => "Crediteuren betaling", "CK" => "Chipknip", "DA" => "Diverse afboekingen", "DB" => "Diverse Boekingen", "GA" => "Geldautomaat", "ID" => "Ideal", "KO" => "Kasopname", "MA" => "Machtiging", "OV" => "Overschrijving", "PB" => "Periodieke betaling", "TB" => "Telebankieren", "TG" => "Telegiro"}
|
70
|
-
|
71
|
-
#popular types: "MSC", "013", "023", "030", "034", "060", "062", "070", "071", "084", "088", "093", "102", "121", "122", "127", "131", "133", "404", "411", "501", "504", "505", "508", "541", "544", "578", "689", "690", "691"
|
72
|
-
|
73
|
-
MAPPING = {}
|
74
|
-
MAPPING[1]="Betaalopdracht NotaBox"
|
75
|
-
MAPPING[10]="Opname bij andere Rabobank"
|
76
|
-
MAPPING[11]="Opname balie"
|
77
|
-
MAPPING[12]="Betaalautomaat buitenland (vreemde valuta)"
|
78
|
-
MAPPING[13]="Betaalautomaat buitenland (euro)"
|
79
|
-
MAPPING[14]="Intra Rabo saldoconcentratie (uitgaand)"
|
80
|
-
MAPPING[15]="Telefonische machtiging eenmalig"
|
81
|
-
MAPPING[16]="Telefonische machtiging doorlopend"
|
82
|
-
MAPPING[17]="Telefonische machtiging kansspelen"
|
83
|
-
MAPPING[18]="Betaalopdracht Mobiel Bankieren (periodiek)"
|
84
|
-
MAPPING[20]="Geldautomaat eigen Rabobank"
|
85
|
-
MAPPING[21]="Geldautomaat andere Rabobank"
|
86
|
-
MAPPING[22]="Opladen Chipknip"
|
87
|
-
MAPPING[23]="Geldautomaat niet Rabobank"
|
88
|
-
MAPPING[25]="Acceptgiro Telebankieren"
|
89
|
-
MAPPING[26]="Betaalopdracht periodiek restsparen"
|
90
|
-
MAPPING[28]="RGS transactie (debet)"
|
91
|
-
MAPPING[29]="Geldautomaat buitenland (euro)"
|
92
|
-
MAPPING[30]="Betaalautomaat Nederland"
|
93
|
-
MAPPING[31]="Geldautomaat buitenland (vreemde valuta)"
|
94
|
-
MAPPING[32]="CrediteurenbetalingTelebankieren (periodiek)"
|
95
|
-
MAPPING[33]="Betaalopdracht handmatig"
|
96
|
-
MAPPING[34]="Betaalopdracht Internetbankieren (periodiek)"
|
97
|
-
MAPPING[35]="Betaalopdracht Telebankieren"
|
98
|
-
MAPPING[36]="Betaalopdracht Telebankieren (periodiek)"
|
99
|
-
MAPPING[37]="Afschrijving overig"
|
100
|
-
MAPPING[38]="Crediteurenbetaling Telebankieren"
|
101
|
-
MAPPING[39]="Salarisbetaling Telebankieren (periodiek)"
|
102
|
-
MAPPING[40]="Betaalopdracht periodiek"
|
103
|
-
MAPPING[41]="Acceptgiro bijlageloos"
|
104
|
-
MAPPING[42]="Boeking naar consumptief krediet (via bank)"
|
105
|
-
MAPPING[44]="Terugboeking incasso"
|
106
|
-
MAPPING[45]="Overheidsvordering"
|
107
|
-
MAPPING[46]="Terugboeking overheidsvordering"
|
108
|
-
MAPPING[47]="Terugboeking machtiging"
|
109
|
-
MAPPING[48]="Betaalopdracht Rabobank"
|
110
|
-
MAPPING[51]="Betaalopdracht Rabofoon (periodiek)"
|
111
|
-
MAPPING[52]="Crediteurenbetaling (Secure FTP)"
|
112
|
-
MAPPING[53]="Salarisbetaling Telebankieren"
|
113
|
-
MAPPING[57]="Salarisbetaling (Secure FTP)"
|
114
|
-
MAPPING[58]="Boeking naar consumptief krediet (balie)"
|
115
|
-
MAPPING[59]="Overboeking naar niet Raborekening (balie)"
|
116
|
-
MAPPING[60]="Doorlopende machtiging algemeen"
|
117
|
-
MAPPING[61]="Eenmalige machtiging"
|
118
|
-
MAPPING[62]="Doorlopende machtiging bedrijven"
|
119
|
-
MAPPING[63]="Doorlopende machtiging kansspelen"
|
120
|
-
MAPPING[64]="Eenmalige actiemachtiging"
|
121
|
-
MAPPING[65]="Direct Debit"
|
122
|
-
MAPPING[66]="Incasso Sociaal Fonds Bouwnijverh."
|
123
|
-
MAPPING[67]="Veilingincasso (geen terugboeking)"
|
124
|
-
MAPPING[68]="Salarisbetaling (Internet Services)"
|
125
|
-
MAPPING[69]="Crediteurenbetaling (Internet Services)"
|
126
|
-
MAPPING[70]="Machtiging Rabobank"
|
127
|
-
MAPPING[71]="Betaalopdracht Internetbankieren"
|
128
|
-
MAPPING[72]="Betaalopdracht Rabofoon"
|
129
|
-
MAPPING[73]="Overboeking naar niet Raborekening (via bank)"
|
130
|
-
MAPPING[76]="Betaalopdracht GSM"
|
131
|
-
MAPPING[81]="Acceptgiro Mobiel Bankieren"
|
132
|
-
MAPPING[82]="Acceptgiro Rabofoon"
|
133
|
-
MAPPING[84]="Acceptgiro Internetbankieren"
|
134
|
-
MAPPING[88]="Betaalopdracht Mobiel Bankieren"
|
135
|
-
MAPPING[90]="Overboeking naar spaarrekening"
|
136
|
-
MAPPING[91]="Overboeking naar lening"
|
137
|
-
MAPPING[92]="Afschrijving effectenhandeling"
|
138
|
-
MAPPING[93]="Afschrijving rente provisie kosten"
|
139
|
-
MAPPING[96]="Kastransactie kasrekening (storten)"
|
140
|
-
MAPPING[97]="Diverse mutaties debet RN"
|
141
|
-
MAPPING[99]="Diverse mutaties debet"
|
142
|
-
MAPPING[100]="Bijschrijving iDEAL (Rabo-Rabo)"
|
143
|
-
MAPPING[101]="Bijschrijving NotaBox (Rabo-Rabo)"
|
144
|
-
MAPPING[102]="Betaalopdracht iDEAL"
|
145
|
-
MAPPING[103]="Bijschrijving iDEAL (interbancair)"
|
146
|
-
MAPPING[104]="Stortingsapparaat"
|
147
|
-
MAPPING[105]="Bijschrijving NotaBox (via Equens)"
|
148
|
-
MAPPING[109]="Uitkering WSF"
|
149
|
-
MAPPING[110]="Terugboeking DD opdracht bank"
|
150
|
-
MAPPING[111]="Terugboeking DD opdracht klant"
|
151
|
-
MAPPING[112]="Terugboeking DD opdracht incassant"
|
152
|
-
MAPPING[114]="Stortingsapparaat (derden storting)"
|
153
|
-
MAPPING[117]="Bijschrijving Maestro betalingen"
|
154
|
-
MAPPING[118]="Bijschrijving Vpay betalingen"
|
155
|
-
MAPPING[119]="Stortingsapparaat (eigen storting)"
|
156
|
-
MAPPING[120]="Bijschrijving PIN betalingen (BEAtel)"
|
157
|
-
MAPPING[121]="Bijschrijving PIN betalingen (Datanet)"
|
158
|
-
MAPPING[122]="Bijschrijving crediteurenbetaling"
|
159
|
-
MAPPING[123]="Bijschrijving acceptgiro"
|
160
|
-
MAPPING[125]="Bijschrijving CHIPknip betalingen"
|
161
|
-
MAPPING[126]="Bijschrijving salarisbetaling"
|
162
|
-
MAPPING[127]="Bijschrijving betaalopdracht"
|
163
|
-
MAPPING[128]="Intra Rabo saldoconcentratie (inkomend)"
|
164
|
-
MAPPING[129]="Bijschrijving saldo Chipknip"
|
165
|
-
MAPPING[130]="Bijschrijving betaalopdracht (periodiek)"
|
166
|
-
MAPPING[131]="Bijschrijving CT betaling"
|
167
|
-
MAPPING[132]="Terugboeking CT betaling"
|
168
|
-
MAPPING[133]="Bijschrijving spoedopdracht"
|
169
|
-
MAPPING[134]="Bankmelding spoedopdracht"
|
170
|
-
MAPPING[135]="RN physical pooling"
|
171
|
-
MAPPING[136]="Overboeking van consumptief krediet (Internetbankieren)"
|
172
|
-
MAPPING[137]="Overboeking van consumptief krediet (Rabofoon)"
|
173
|
-
MAPPING[139]="Overboeking van consumptief krediet (Mobiel Bankieren)"
|
174
|
-
MAPPING[141]="RGS transactie (credit)"
|
175
|
-
MAPPING[142]="Baliestorting EUR <3.000"
|
176
|
-
MAPPING[143]="Baliestorting EUR 3.000-7.500"
|
177
|
-
MAPPING[144]="Baliestorting EUR 7.500-12.000"
|
178
|
-
MAPPING[145]="Baliestorting EUR >12.000"
|
179
|
-
MAPPING[146]="Baliestorting (filiaal) EUR <3.000"
|
180
|
-
MAPPING[147]="Baliestorting (filiaal) EUR 3.000-7.500"
|
181
|
-
MAPPING[148]="Baliestorting (filiaal) EUR 7.500-12.000"
|
182
|
-
MAPPING[149]="Baliestorting (filiaal) EUR >12.000"
|
183
|
-
MAPPING[150]="Spoedopdracht (binnen Rabobank)"
|
184
|
-
MAPPING[151]="Spoedopdracht (buiten Rabobank)"
|
185
|
-
MAPPING[152]="Spoedopdracht Telebankieren Extra (binnen Rabobank)"
|
186
|
-
MAPPING[153]="Spoedopdracht Telebankieren Extra (buiten Rabobank)"
|
187
|
-
MAPPING[154]="Spoedopdracht Internetbankieren (buiten Rabobank)"
|
188
|
-
MAPPING[155]="Spoedopdracht Internetbankieren (binnen Rabobank)"
|
189
|
-
MAPPING[156]="Spoedopdracht balie (buiten Rabobank)"
|
190
|
-
MAPPING[157]="Spoedopdracht via bank (buiten Rabobank)"
|
191
|
-
MAPPING[158]="Spoedopdracht balie (binnen Rabobank)"
|
192
|
-
MAPPING[159]="Spoedopdracht via bank (binnen Rabobank)"
|
193
|
-
MAPPING[160]="Salarisbetaling Internetbankieren (batch)"
|
194
|
-
MAPPING[161]="Crediteurenbetaling Internetbankieren (batch)"
|
195
|
-
MAPPING[162]="Betaalopdracht Internetbankieren (batch)"
|
196
|
-
MAPPING[163]="Salarisbetaling Telebankieren (batch)"
|
197
|
-
MAPPING[164]="Crediteurenbetaling Telebankieren (batch)"
|
198
|
-
MAPPING[172]="Sealbagstorting kwaliteit EUR <3.000"
|
199
|
-
MAPPING[173]="Sealbagstorting kwaliteit EUR 3.000-7.500"
|
200
|
-
MAPPING[174]="Sealbagstorting kwaliteit EUR 7.500-12.000"
|
201
|
-
MAPPING[175]="Sealbagstorting kwaliteit EUR >12.000"
|
202
|
-
MAPPING[176]="Sealbagstorting kwaliteit (filiaal) EUR <3.000"
|
203
|
-
MAPPING[177]="Sealbagstorting kwaliteit (filiaal) EUR 3.000-7.500"
|
204
|
-
MAPPING[178]="Sealbagstorting kwaliteit (filiaal) EUR 7.500-12.000"
|
205
|
-
MAPPING[179]="Sealbagstorting kwaliteit (filiaal) EUR >12.000"
|
206
|
-
MAPPING[182]="Sealbagstorting non-kwaliteit EUR <3.000"
|
207
|
-
MAPPING[183]="Sealbagstorting non-kwaliteit EUR 3.000-7.500"
|
208
|
-
MAPPING[184]="Sealbagstorting non-kwaliteit EUR 7.500-12.000"
|
209
|
-
MAPPING[185]="Sealbagstorting non-kwaliteit EUR >12.000"
|
210
|
-
MAPPING[186]="Sealbagstorting non-kwaliteit (filiaal) EUR <3.000"
|
211
|
-
MAPPING[187]="Sealbagstorting non-kwaliteit (filiaal) EUR 3.000-7.500"
|
212
|
-
MAPPING[188]="Sealbagstorting non-kwaliteit (filiaal) EUR 7.500-12.000"
|
213
|
-
MAPPING[189]="Sealbagstorting non-kwaliteit (filiaal) EUR >12.000"
|
214
|
-
MAPPING[190]="Overboeking van spaarrekening"
|
215
|
-
MAPPING[191]="Overboeking van lening"
|
216
|
-
MAPPING[192]="Bijschrijving effectenhandeling"
|
217
|
-
MAPPING[193]="Bijschrijving rente provisie kosten"
|
218
|
-
MAPPING[196]="Kastransactie kasrekening (opnemen)"
|
219
|
-
MAPPING[197]="Diverse mutaties credit RN"
|
220
|
-
MAPPING[199]="Diverse mutaties credit"
|
221
|
-
MAPPING[201]="Telebankieren vrijgeven opdrachten"
|
222
|
-
MAPPING[204]="Stortingsapparaat biljetten (eigen storting)"
|
223
|
-
MAPPING[205]="MT101-berichten"
|
224
|
-
MAPPING[206]="Batch incasso (Telebankieren)"
|
225
|
-
MAPPING[207]="Telebankieren sessiekosten"
|
226
|
-
MAPPING[208]="Telebankieren Extra informatie kosten boeksaldi"
|
227
|
-
MAPPING[209]="Telebankieren Extra informatie kosten valutaire saldi"
|
228
|
-
MAPPING[214]="Batch betalen (Secure FTP)"
|
229
|
-
MAPPING[215]="Batch betalen (Internet Services)"
|
230
|
-
MAPPING[216]="Batch PIN bijschrijvingen"
|
231
|
-
MAPPING[217]="Batch CHIPknip bijschrijvingen"
|
232
|
-
MAPPING[224]="Batch incasso (Secure FTP)"
|
233
|
-
MAPPING[225]="Batch incasso (Internet Services)"
|
234
|
-
MAPPING[230]="Contante valutatransactie EUR~VV EUR <50.000"
|
235
|
-
MAPPING[231]="Contante valutatransactie EUR~VV EUR 50.000-100.000"
|
236
|
-
MAPPING[232]="Contante valutatransactie EUR~VV EUR 100.000-150.000"
|
237
|
-
MAPPING[233]="Contante valutatransactie EUR~VV EUR >150.000"
|
238
|
-
MAPPING[234]="Valutatermijntransactie EUR~VV EUR <100.000"
|
239
|
-
MAPPING[235]="Valutatermijntransactie EUR~VV EUR 100.000-225.000"
|
240
|
-
MAPPING[236]="Valutatermijntransactie EUR~VV EUR 225.000-450.000"
|
241
|
-
MAPPING[237]="Valutatermijntransactie EUR~VV EUR 450.000-1.000.000"
|
242
|
-
MAPPING[238]="Valutatermijntransactie EUR~VV EUR 1.000.000-4.500.000"
|
243
|
-
MAPPING[239]="Valutatermijntransactie EUR~VV EUR >4.500.000"
|
244
|
-
MAPPING[240]="Valutaswaptransactie EUR~VV EUR <100.000"
|
245
|
-
MAPPING[241]="Valutaswaptransactie EUR~VV EUR 100.000-225.000"
|
246
|
-
MAPPING[242]="Valutaswaptransactie EUR~VV EUR 225.000-450.000"
|
247
|
-
MAPPING[243]="Valutaswaptransactie EUR~VV EUR 450.000-1.000.000"
|
248
|
-
MAPPING[244]="Valutaswaptransactie EUR~VV EUR 1.000.000-4.500.000"
|
249
|
-
MAPPING[245]="Valutaswaptransactie EUR~VV EUR >4.500.000"
|
250
|
-
MAPPING[246]="Valutaswaptransactie EUR~VV laatste transactie"
|
251
|
-
MAPPING[247]="Contante valutatransactie VV~EUR EUR <50.000"
|
252
|
-
MAPPING[248]="Contante valutatransactie VV~EUR EUR 50.000-100.000"
|
253
|
-
MAPPING[249]="Contante valutatransactie VV~EUR EUR 100.000-150.000"
|
254
|
-
MAPPING[250]="Contante valutatransactie VV~EUR EUR >150.000"
|
255
|
-
MAPPING[251]="Valutatermijntransactie VV~EUR EUR <100.000"
|
256
|
-
MAPPING[252]="Valutatermijntransactie VV~EUR EUR 100.000-225.000"
|
257
|
-
MAPPING[253]="Valutatermijntransactie VV~EUR EUR 225.000-450.000"
|
258
|
-
MAPPING[254]="Valutatermijntransactie VV~EUR EUR 450.000-1.000.000"
|
259
|
-
MAPPING[255]="Valutatermijntransactie VV~EUR EUR 1.000.000-4.500.000"
|
260
|
-
MAPPING[256]="Valutatermijntransactie VV~EUR EUR >4.500.000"
|
261
|
-
MAPPING[257]="Valutaswaptransactie VV~EUR EUR <100.000"
|
262
|
-
MAPPING[258]="Valutaswaptransactie VV~EUR EUR 100.000-225.000"
|
263
|
-
MAPPING[259]="Valutaswaptransactie VV~EUR EUR 225.000-450.000"
|
264
|
-
MAPPING[260]="Valutaswaptransactie VV~EUR EUR 450.000-1.000.000"
|
265
|
-
MAPPING[261]="Valutaswaptransactie VV~EUR EUR 1.000.000-4.500.000"
|
266
|
-
MAPPING[262]="Valutaswaptransactie VV~EUR EUR >4.500.000"
|
267
|
-
MAPPING[263]="Valutaswaptransactie VV~EUR laatste transactie"
|
268
|
-
MAPPING[269]="Niet leverbare termijnaffaire"
|
269
|
-
MAPPING[270]="Contante valutatransactie VV~VV EUR <50.000"
|
270
|
-
MAPPING[271]="Contante valutatransactie VV~VV EUR 50.000-100.000"
|
271
|
-
MAPPING[272]="Contante valutatransactie VV~VV EUR 100.000-150.000"
|
272
|
-
MAPPING[273]="Contante valutatransactie VV~VV EUR >150.000"
|
273
|
-
MAPPING[274]="Valutatermijntransactie VV~VV EUR <100.000"
|
274
|
-
MAPPING[275]="Valutatermijntransactie VV~VV EUR 100.000-225.000"
|
275
|
-
MAPPING[276]="Valutatermijntransactie VV~VV EUR 225.000-450.000"
|
276
|
-
MAPPING[277]="Valutatermijntransactie VV~VV EUR 450.000-1.000.000"
|
277
|
-
MAPPING[278]="Valutatermijntransactie VV~VV EUR 1.000.000-4.500.000"
|
278
|
-
MAPPING[279]="Valutatermijntransactie VV~VV EUR >4.500.000"
|
279
|
-
MAPPING[280]="Valutaswaptransactie VV~VV EUR <100.000"
|
280
|
-
MAPPING[281]="Valutaswaptransactie VV~VV EUR 100.000-225.000"
|
281
|
-
MAPPING[282]="Valutaswaptransactie VV~VV EUR 225.000-450.000"
|
282
|
-
MAPPING[283]="Valutaswaptransactie VV~VV EUR 450.000-1.000.000"
|
283
|
-
MAPPING[284]="Valutaswaptransactie VV~VV EUR 1.000.000-4.500.000"
|
284
|
-
MAPPING[285]="Valutaswaptransactie VV~VV EUR >4.500.000"
|
285
|
-
MAPPING[286]="Valutaswaptransactie VV~VV laatste transactie"
|
286
|
-
MAPPING[287]="Rabo iDEAL Professional entree"
|
287
|
-
MAPPING[288]="Rabo iDEAL Professional abonnement"
|
288
|
-
MAPPING[289]="Rabo iDEAL Kassa entree"
|
289
|
-
MAPPING[290]="Rabo iDEAL Kassa abonnement"
|
290
|
-
MAPPING[291]="Rabo iDEAL Kassa transactie"
|
291
|
-
MAPPING[292]="MiniTix-optie abonnement"
|
292
|
-
MAPPING[293]="Logo-optie"
|
293
|
-
MAPPING[294]="Overstap naar Rabo Internetkassa"
|
294
|
-
MAPPING[295]="Rabo Internetkassa entree"
|
295
|
-
MAPPING[296]="Rabo Internetkassa abonnement"
|
296
|
-
MAPPING[297]="Rabo Internetkassa transactie"
|
297
|
-
MAPPING[298]="Callcenter-optie entree"
|
298
|
-
MAPPING[299]="Callcenter-optie abonnement"
|
299
|
-
MAPPING[300]="Overstapservice"
|
300
|
-
MAPPING[301]="Rekeningafschrift papier"
|
301
|
-
MAPPING[302]="Rekeningafschrift braille"
|
302
|
-
MAPPING[303]="Mededeling niet uitgevoerde periodieke opdracht"
|
303
|
-
MAPPING[304]="Rekeningafschrift (extra exemplaar)"
|
304
|
-
MAPPING[305]="Rekeningafschrift VV rekening"
|
305
|
-
MAPPING[306]="Mededeling"
|
306
|
-
MAPPING[307]="Overzicht mutaties"
|
307
|
-
MAPPING[308]="Overzicht mutaties braille"
|
308
|
-
MAPPING[309]="Rekeningafschrift digitaal"
|
309
|
-
MAPPING[310]="Rekeningafschrift niet aangemaakt"
|
310
|
-
MAPPING[311]="Overzicht mutaties via bank"
|
311
|
-
MAPPING[312]="Rekeningafschrift (kopie)"
|
312
|
-
MAPPING[313]="Mededeling digitaal afschrift"
|
313
|
-
MAPPING[314]="Terugboeking actieaanbod digitaal rekeningafschrift"
|
314
|
-
MAPPING[315]="Maandelijks rekeningoverzicht"
|
315
|
-
MAPPING[316]="Nota rente, provisie en kosten "
|
316
|
-
MAPPING[317]="Nota rente, provisie en kosten samenstelling"
|
317
|
-
MAPPING[318]="Staffel"
|
318
|
-
MAPPING[319]="Specificatie bij nota"
|
319
|
-
MAPPING[320]="Boekje overschrijvingsformulieren"
|
320
|
-
MAPPING[321]="Specificatie bij rekeningafschrift"
|
321
|
-
MAPPING[322]="Opdrachtformulieren"
|
322
|
-
MAPPING[323]="Maandelijks portefeuille-overzicht"
|
323
|
-
MAPPING[324]="URLinked 2 Homepage entree"
|
324
|
-
MAPPING[325]="URLinked 2 Homepage klik"
|
325
|
-
MAPPING[326]="Bericht van rentewijziging credit"
|
326
|
-
MAPPING[327]="Bericht van rentewijziging debet"
|
327
|
-
MAPPING[328]="URLinked 2 Personalinfo entree"
|
328
|
-
MAPPING[329]="URLinked 2 Personalinfo klik"
|
329
|
-
MAPPING[330]="ERI informatierecords"
|
330
|
-
MAPPING[332]="BRI abonnement"
|
331
|
-
MAPPING[333]="BRI download"
|
332
|
-
MAPPING[334]="BRI informatierecord"
|
333
|
-
MAPPING[341]="ERI filetransfer"
|
334
|
-
MAPPING[342]="VerwInfo entree"
|
335
|
-
MAPPING[343]="VerwInfo abonnement"
|
336
|
-
MAPPING[344]="VerwInfo geleverde batches"
|
337
|
-
MAPPING[345]="VerwInfo geleverde posten"
|
338
|
-
MAPPING[350]="Abonnement PIN/COMBI automaat koop (vast)"
|
339
|
-
MAPPING[351]="Abonnement PIN/COMBI automaat koop (mobiel)"
|
340
|
-
MAPPING[352]="Abonnement PIN/COMBI automaat huur (vast)"
|
341
|
-
MAPPING[353]="Abonnement PIN/COMBI automaat huur (mobiel)"
|
342
|
-
MAPPING[360]="Aanmaak/heraanmaak Rabopas"
|
343
|
-
MAPPING[361]="Aanmaak/heraanmaak pincode Rabopas"
|
344
|
-
MAPPING[362]="Behandeling reclame"
|
345
|
-
MAPPING[363]="Stickers afstortformulier"
|
346
|
-
MAPPING[370]="Telebankieren informatie kosten <10.000 mutaties"
|
347
|
-
MAPPING[371]="Telebankieren informatie kosten 10.000-50.000 mutaties"
|
348
|
-
MAPPING[372]="Telebankieren informatie kosten >50.000 mutaties"
|
349
|
-
MAPPING[374]="Telebankieren vrijgeven opdrachten SMS-bericht"
|
350
|
-
MAPPING[375]="Telebankieren vrijgeven opdrachten e-mail"
|
351
|
-
MAPPING[376]="NotaBox Alerts sms"
|
352
|
-
MAPPING[377]="NotaBox Alerts e-mail"
|
353
|
-
MAPPING[378]="NotaBox Alerts abonnement"
|
354
|
-
MAPPING[380]="Rabo Mobiel Saldo e-mail"
|
355
|
-
MAPPING[381]="Rabo Roodstand Alerts"
|
356
|
-
MAPPING[382]="Rabo Saldo SMS"
|
357
|
-
MAPPING[383]="Rabo Mobiel Saldo SMS (leden)"
|
358
|
-
MAPPING[384]="Rabo Mobiel Saldochecker"
|
359
|
-
MAPPING[387]="Rabo iDEAL Lite entree"
|
360
|
-
MAPPING[388]="Rabo iDEAL Professional PSP abonnement"
|
361
|
-
MAPPING[389]="Rabo iDEAL Lite abonnement"
|
362
|
-
MAPPING[390]="Rabo Cashflow Forecasting Module entree"
|
363
|
-
MAPPING[391]="Rabo Cashflow Forecasting Module abonnement"
|
364
|
-
MAPPING[392]="Rabo Cash Management entree"
|
365
|
-
MAPPING[393]="Rabo Cash Management abonnement"
|
366
|
-
MAPPING[394]="Rabo Cash Management alerts"
|
367
|
-
MAPPING[395]="RFLP extra toegangspas"
|
368
|
-
MAPPING[396]="RFLP extra paslezer"
|
369
|
-
MAPPING[397]="RFLP informatiekosten (per record)"
|
370
|
-
MAPPING[398]="RFLP downloadkosten (per record)"
|
371
|
-
MAPPING[400]="Acceptgiro RFLP"
|
372
|
-
MAPPING[401]="Crediteurenbetaling RFLP"
|
373
|
-
MAPPING[402]="Crediteurenbetaling RFLP (periodiek)"
|
374
|
-
MAPPING[403]="Crediteurenbetaling RFLP (batch)"
|
375
|
-
MAPPING[404]="Buitenland transactie (credit)"
|
376
|
-
MAPPING[405]="Salarisbetaling RFLP (periodiek)"
|
377
|
-
MAPPING[406]="Salarisbetaling RFLP (batch)"
|
378
|
-
MAPPING[407]="Betaalopdracht RFLP"
|
379
|
-
MAPPING[408]="Betaalopdracht RFLP (periodiek)"
|
380
|
-
MAPPING[409]="Spoedopdracht RFLP (binnen Rabobank)"
|
381
|
-
MAPPING[410]="Spoedopdracht RFLP (buiten Rabobank)"
|
382
|
-
MAPPING[411]="Buitenland transactie (debet)"
|
383
|
-
MAPPING[412]="Salarisbetaling RFLP"
|
384
|
-
MAPPING[421]="Bijboeking buitenland BEN Equens"
|
385
|
-
MAPPING[422]="Bijboeking buitenland OUR Equens"
|
386
|
-
MAPPING[423]="Bijboeking buitenland SHA Equens"
|
387
|
-
MAPPING[424]="Bijschrijving EuroPlus SHA"
|
388
|
-
MAPPING[425]="Bijschrijving EuroPlus OUR"
|
389
|
-
MAPPING[426]="Bijschrijving EuroPlus BEN"
|
390
|
-
MAPPING[427]="Bijschrijving EuroPlus SHA spoed"
|
391
|
-
MAPPING[428]="Bijschrijving EuroPlus OUR spoed"
|
392
|
-
MAPPING[429]="Bijschrijving EuroPlus BEN spoed"
|
393
|
-
MAPPING[430]="Physical pooling sweep funding"
|
394
|
-
MAPPING[431]="Physical pooling sweep skimming"
|
395
|
-
MAPPING[432]="Overnight pooling forward sweep debet"
|
396
|
-
MAPPING[433]="Overnight pooling forward sweep credit"
|
397
|
-
MAPPING[434]="Overnight pooling back sweep debet"
|
398
|
-
MAPPING[435]="Overnight pooling back sweep credit"
|
399
|
-
MAPPING[439]="Bankcheque post"
|
400
|
-
MAPPING[449]="Bankcheque post handmatig"
|
401
|
-
MAPPING[450]="ICM BOA Lockbox Verenigd Koninkrijk"
|
402
|
-
MAPPING[451]="ICM BOA Lockbox Ierland"
|
403
|
-
MAPPING[452]="ICM BOA Lockbox Duitsland"
|
404
|
-
MAPPING[453]="ICM BOA Lockbox Frankrijk"
|
405
|
-
MAPPING[454]="ICM BOA Lockbox Verenigde Staten"
|
406
|
-
MAPPING[458]="Bankcheque aangetekend"
|
407
|
-
MAPPING[459]="Bankcheque aangetekend handmatig"
|
408
|
-
MAPPING[462]="ICM BOA abonnement"
|
409
|
-
MAPPING[463]="ICM BOA rekening"
|
410
|
-
MAPPING[464]="ICM BOA transactie"
|
411
|
-
MAPPING[465]="Buitenland niet grensoverschrijdend"
|
412
|
-
MAPPING[466]="Bijschrijving buitenland niet grensoverschrijdend"
|
413
|
-
MAPPING[467]="Bijschrijving buitenland niet grensoverschrijdend franco"
|
414
|
-
MAPPING[468]="Bankcheque koerier NL"
|
415
|
-
MAPPING[469]="Bankcheque koerier NL handmatig"
|
416
|
-
MAPPING[470]="ICM aanzuiveren uitgaand"
|
417
|
-
MAPPING[471]="ICM afromen inkomend"
|
418
|
-
MAPPING[472]="ICM saldo concentratie services afromen inkomend"
|
419
|
-
MAPPING[473]="ICM saldo concentratie services aanzuiveren uitgaand"
|
420
|
-
MAPPING[474]="ICM aanzuiveren inkomend"
|
421
|
-
MAPPING[475]="ICM saldo concentratie services aanzuiveren inkomend"
|
422
|
-
MAPPING[476]="ICM saldo concentratie services afromen uitgaand"
|
423
|
-
MAPPING[477]="ICM afromen uitgaand"
|
424
|
-
MAPPING[478]="Bankcheque koerier buitenland"
|
425
|
-
MAPPING[479]="Bankcheque koerier buitenland (handmatig)"
|
426
|
-
MAPPING[481]="EuroPlus OUR"
|
427
|
-
MAPPING[482]="EuroPlus BEN"
|
428
|
-
MAPPING[483]="EuroPlus SHA"
|
429
|
-
MAPPING[484]="EuroPlus SHA handmatig"
|
430
|
-
MAPPING[485]="EuroPlus OUR handmatig"
|
431
|
-
MAPPING[486]="EuroPlus BEN handmatig"
|
432
|
-
MAPPING[487]="EuroPlus SHA spoed"
|
433
|
-
MAPPING[488]="EuroPlus OUR spoed"
|
434
|
-
MAPPING[489]="EuroPlus BEN spoed"
|
435
|
-
MAPPING[490]="EuroPlus SHA handmatig spoed"
|
436
|
-
MAPPING[491]="EuroPlus OUR handmatig spoed"
|
437
|
-
MAPPING[492]="EuroPlus BEN handmatig spoed"
|
438
|
-
MAPPING[494]="Eurobetaling SHA"
|
439
|
-
MAPPING[495]="Eurobetaling SHA spoed"
|
440
|
-
MAPPING[498]="Eurobetaling SHA spoed handmatig"
|
441
|
-
MAPPING[501]="Overboeking naar betaalrekening (Internetbankieren)"
|
442
|
-
MAPPING[502]="Overboeking naar betaalrekening (Rabofoon)"
|
443
|
-
MAPPING[503]="Overboeking naar betaalrekening (Telebankieren)"
|
444
|
-
MAPPING[504]="Overboeking naar spaarrekening (Mobiel Bankieren)"
|
445
|
-
MAPPING[505]="Overboeking naar spaarrekening (Internetbankieren)"
|
446
|
-
MAPPING[506]="Overboeking naar spaarrekening (Rabofoon)"
|
447
|
-
MAPPING[507]="Overboeking naar spaarrekening (Telebankieren)"
|
448
|
-
MAPPING[508]="Overboeking naar betaalrekening (Mobiel Bankieren)(periodiek)"
|
449
|
-
MAPPING[509]="Overboeking naar betaalrekening (Internetbankieren)(periodiek)"
|
450
|
-
MAPPING[510]="Overboeking naar betaalrekening (Rabofoon)(periodiek)"
|
451
|
-
MAPPING[511]="Overboeking naar spaarrekening (Mobiel Bankieren)(periodiek)"
|
452
|
-
MAPPING[512]="Overboeking naar spaarrekening (Internetbankieren)(periodiek)"
|
453
|
-
MAPPING[513]="Sealbagstorting kwaliteit EUR basistarief"
|
454
|
-
MAPPING[514]="Sealbagstorting kwaliteit EUR coupures"
|
455
|
-
MAPPING[517]="Sealbagstorting non-kwaliteit EUR basistarief"
|
456
|
-
MAPPING[518]="Sealbagstorting non-kwaliteit EUR coupures"
|
457
|
-
MAPPING[523]="Storting munten container"
|
458
|
-
MAPPING[525]="Storting munten zakken"
|
459
|
-
MAPPING[526]="Storting munten tellen"
|
460
|
-
MAPPING[531]="Storting vreemde valuta basistarief"
|
461
|
-
MAPPING[532]="Storting vreemde valuta coupures"
|
462
|
-
MAPPING[533]="Storting vreemde valuta EUR <3.000"
|
463
|
-
MAPPING[534]="Storting vreemde valuta EUR 3.000-7.500"
|
464
|
-
MAPPING[535]="Storting vreemde valuta EUR 7.500-12.000"
|
465
|
-
MAPPING[536]="Storting vreemde valuta EUR >12.000"
|
466
|
-
MAPPING[538]="Overboeking naar spaarrekening (Telebankieren)(periodiek)"
|
467
|
-
MAPPING[540]="Bijschrijving Eurobetaling SHA"
|
468
|
-
MAPPING[543]="Bijschrijving Eurobetaling SHA spoed"
|
469
|
-
MAPPING[544]="Eurobetaling (Internetbankieren)"
|
470
|
-
MAPPING[552]="Wereldbetaling SHA"
|
471
|
-
MAPPING[553]="Wereldbetaling OUR"
|
472
|
-
MAPPING[554]="Wereldbetaling BEN"
|
473
|
-
MAPPING[555]="Wereldbetaling SHA spoed"
|
474
|
-
MAPPING[556]="Wereldbetaling OUR spoed"
|
475
|
-
MAPPING[557]="Wereldbetaling BEN spoed"
|
476
|
-
MAPPING[558]="Wereldbetaling SHA met instructies"
|
477
|
-
MAPPING[559]="Wereldbetaling OUR met instructies"
|
478
|
-
MAPPING[560]="Wereldbetaling BEN met instructies"
|
479
|
-
MAPPING[561]="Wereldbetaling SHA spoed overige instructies"
|
480
|
-
MAPPING[562]="Wereldbetaling OUR spoed overige instructies"
|
481
|
-
MAPPING[563]="Wereldbetaling BEN spoed overige instructies"
|
482
|
-
MAPPING[565]="Overboeking naar betaalrekening (balie)"
|
483
|
-
MAPPING[566]="Overboeking naar spaarrekening (balie)"
|
484
|
-
MAPPING[567]="Overboeking naar lening (balie)"
|
485
|
-
MAPPING[568]="Overboeking van betaalrekening (balie)"
|
486
|
-
MAPPING[569]="Overboeking van spaarrekening (balie)"
|
487
|
-
MAPPING[574]="Muntrollen"
|
488
|
-
MAPPING[575]="Overboeking van consumptief krediet (balie)"
|
489
|
-
MAPPING[576]="Overboeking naar betaalrekening (via bank)"
|
490
|
-
MAPPING[577]="Overboeking naar spaarrekening (Rabofoon)(periodiek)"
|
491
|
-
MAPPING[578]="Overboeking naar betaalrekening (Mobiel Bankieren)"
|
492
|
-
MAPPING[579]="Bestelling biljetten"
|
493
|
-
MAPPING[580]="Overboeking naar spaarrekening (via bank)"
|
494
|
-
MAPPING[581]="Overboeking naar lening (via bank)"
|
495
|
-
MAPPING[582]="Overboeking van betaalrekening (via bank)"
|
496
|
-
MAPPING[591]="Stortingsverschil EUR"
|
497
|
-
MAPPING[592]="Stortingsverschil VV"
|
498
|
-
MAPPING[600]="Rabo BasisPakket met Wereldpas en maandelijks afschrift"
|
499
|
-
MAPPING[601]="Rabo BasisPakket met Wereldpas en tweewekelijks afschrift"
|
500
|
-
MAPPING[602]="Rabo BasisPakket met Wereldpas en wekelijks afschrift"
|
501
|
-
MAPPING[603]="Rabo BasisPakket met Rabopas en maandelijks afschrift"
|
502
|
-
MAPPING[604]="Rabo BasisPakket met Rabopas en tweewekelijks afschrift"
|
503
|
-
MAPPING[605]="Rabo BasisPakket met Rabopas en wekelijks afschrift"
|
504
|
-
MAPPING[606]="Rabo DirectPakket met Wereldpas en maandelijks afschrift"
|
505
|
-
MAPPING[607]="Rabo TotaalPakket met Wereldpas en Rabocard en maandelijks afschrift"
|
506
|
-
MAPPING[608]="Rabo TotaalPakket met Wereldpas en Rabocard en tweewekelijks afschrift"
|
507
|
-
MAPPING[609]="Rabo TotaalPakket met Wereldpas en Rabocard en wekelijks afschrift"
|
508
|
-
MAPPING[610]="Rabo RiantPakket met Wereldpas en GoldCard en maandelijks afschrift"
|
509
|
-
MAPPING[611]="Rabo RiantPakket met Wereldpas en GoldCard en tweewekelijks afschrift"
|
510
|
-
MAPPING[612]="Rabo RiantPakket met Wereldpas en GoldCard en wekelijks afschrift"
|
511
|
-
MAPPING[613]="Extra betaalrekening met maandelijks afschrift"
|
512
|
-
MAPPING[614]="Extra betaalrekening met tweewekelijks afschrift"
|
513
|
-
MAPPING[615]="Extra betaalrekening met wekelijks afschrift"
|
514
|
-
MAPPING[640]="Doorlopende machtiging algemeen (Telebankieren)"
|
515
|
-
MAPPING[641]="Eenmalige machtiging (Telebankieren)"
|
516
|
-
MAPPING[642]="Doorlopende machtiging bedrijven (Telebankieren)"
|
517
|
-
MAPPING[643]="Doorlopende machtiging kansspelen (Telebankieren)"
|
518
|
-
MAPPING[644]="Eenmalige actiemachtiging (Telebankieren)"
|
519
|
-
MAPPING[646]="Incasso Sociaal Fonds Bouwnijverh. (Telebankieren)"
|
520
|
-
MAPPING[647]="Veilingincasso (geen terugboeking) (Telebankieren)"
|
521
|
-
MAPPING[648]="Telefonische machtiging eenmalig (Telebankieren)"
|
522
|
-
MAPPING[649]="Telefonische machtiging doorlopend (Telebankieren)"
|
523
|
-
MAPPING[654]="Overboeking van betaalrekening (Telebankieren)(periodiek)"
|
524
|
-
MAPPING[655]="Overboeking van betaalrekening (Telebankieren)"
|
525
|
-
MAPPING[656]="Overboeking van spaarrekening (Telebankieren)"
|
526
|
-
MAPPING[660]="Doorlopende machtiging algemeen (Secure FTP)"
|
527
|
-
MAPPING[661]="Eenmalige machtiging (Secure FTP)"
|
528
|
-
MAPPING[662]="Doorlopende machtiging bedrijven (Secure FTP)"
|
529
|
-
MAPPING[663]="Doorlopende machtiging kansspelen (Secure FTP)"
|
530
|
-
MAPPING[664]="Eenmalige actiemachtiging (Secure FTP)"
|
531
|
-
MAPPING[666]="Incasso Sociaal Fonds Bouwnijverh. (Secure FTP)"
|
532
|
-
MAPPING[667]="Veilingincasso (geen terugboeking) (Secure FTP)"
|
533
|
-
MAPPING[668]="Telefonische machtiging eenmalig (Secure FTP)"
|
534
|
-
MAPPING[669]="Telefonische machtiging doorlopend (Secure FTP)"
|
535
|
-
MAPPING[670]="Doorlopende machtiging algemeen (Internet Services)"
|
536
|
-
MAPPING[671]="Eenmalige machtiging (Internet Services)"
|
537
|
-
MAPPING[672]="Doorlopende machtiging bedrijven (Internet Services)"
|
538
|
-
MAPPING[673]="Doorlopende machtiging kansspelen (Internet Services)"
|
539
|
-
MAPPING[674]="Eenmalige actiemachtiging (Internet Services)"
|
540
|
-
MAPPING[676]="Incasso Sociaal Fonds Bouwnijverh. (Internet Services)"
|
541
|
-
MAPPING[677]="Veilingincasso (geen terugboeking) (Internet Services)"
|
542
|
-
MAPPING[678]="Telefonische machtiging eenmalig (Internet Services)"
|
543
|
-
MAPPING[679]="Telefonische machtiging doorlopend (Internet Services)"
|
544
|
-
MAPPING[684]="Telefonische machtiging kansspelen (Telebankieren)"
|
545
|
-
MAPPING[686]="Telefonische machtiging kansspelen (Secure FTP)"
|
546
|
-
MAPPING[687]="Telefonische machtiging kansspelen (Internet Services)"
|
547
|
-
MAPPING[688]="Overboeking van betaalrekening (Mobiel Bankieren)(periodiek)"
|
548
|
-
MAPPING[689]="Overboeking van betaalrekening (Mobiel Bankieren)"
|
549
|
-
MAPPING[690]="Overboeking van spaarrekening (Internetbankieren)"
|
550
|
-
MAPPING[691]="Overboeking van spaarrekening (Mobiel Bankieren)"
|
551
|
-
MAPPING[692]="Overboeking van spaarrekening (via bank)"
|
552
|
-
MAPPING[693]="Overboeking van lening (via bank)"
|
553
|
-
MAPPING[694]="Overboeking van consumptief krediet (via bank)"
|
554
|
-
MAPPING[695]="Overboeking van betaalrekening (Rabofoon)(periodiek)"
|
555
|
-
MAPPING[696]="Overboeking van betaalrekening (Rabofoon)"
|
556
|
-
MAPPING[697]="Overboeking van spaarrekening (Rabofoon)"
|
557
|
-
MAPPING[698]="Overboeking van betaalrekening (Internetbankieren)(periodiek)"
|
558
|
-
MAPPING[699]="Overboeking van betaalrekening (Internetbankieren)"
|
559
|
-
MAPPING[700]="Machtiging (Rabobank)"
|
560
|
-
MAPPING[701]="Storting travellercheques EUR <3.000"
|
561
|
-
MAPPING[702]="Storting travellercheques EUR 3.000-7.500"
|
562
|
-
MAPPING[703]="Storting travellercheques EUR 7.500-12.000"
|
563
|
-
MAPPING[704]="Storting travellercheques EUR >12.000"
|
564
|
-
MAPPING[705]="Stortingsverschil travellercheques"
|
565
|
-
MAPPING[706]="Bestelling eurobiljetten internet EUR <450"
|
566
|
-
MAPPING[707]="Bestelling eurobiljetten internet EUR >450"
|
567
|
-
MAPPING[708]="Bestelling vreemde valuta internet EUR <450"
|
568
|
-
MAPPING[709]="Bestelling vreemde valuta internet EUR >450"
|
569
|
-
MAPPING[710]="WereldBasis SHA"
|
570
|
-
MAPPING[711]="Bestelling eurobiljetten EUR <450"
|
571
|
-
MAPPING[712]="Bestelling eurobiljetten EUR 450-5.000"
|
572
|
-
MAPPING[713]="Bestelling eurobiljetten EUR 5.000-25.000"
|
573
|
-
MAPPING[714]="Bestelling eurobiljetten EUR >25.000"
|
574
|
-
MAPPING[716]="WereldBasis BEN"
|
575
|
-
MAPPING[717]="WereldBasis SHA handmatig"
|
576
|
-
MAPPING[719]="Bestelling vreemde valuta EUR <450"
|
577
|
-
MAPPING[720]="Bestelling vreemde valuta EUR 450-5.000"
|
578
|
-
MAPPING[721]="Bestelling vreemde valuta EUR 5.000-25.000"
|
579
|
-
MAPPING[722]="Bestelling vreemde valuta EUR >25.000"
|
580
|
-
MAPPING[723]="WereldBasis BEN handmatig"
|
581
|
-
MAPPING[724]="WereldBasis SHA spoed"
|
582
|
-
MAPPING[725]="WereldBasis SP SHA"
|
583
|
-
MAPPING[726]="WereldBasis SP BEN"
|
584
|
-
MAPPING[727]="WereldBasis SP SHA handmatig"
|
585
|
-
MAPPING[728]="WereldBasis SP BEN handmatig"
|
586
|
-
MAPPING[729]="WereldBasis SP SHA spoed"
|
587
|
-
MAPPING[730]="WereldBasis BEN spoed"
|
588
|
-
MAPPING[731]="WereldBasis SHA handmatig spoed"
|
589
|
-
MAPPING[732]="WereldBasis SP BEN spoed"
|
590
|
-
MAPPING[733]="WereldBasis SP SHA handmatig spoed"
|
591
|
-
MAPPING[734]="WereldBasis SP BEN handmatig spoed"
|
592
|
-
MAPPING[735]="WereldBasis SP OUR"
|
593
|
-
MAPPING[736]="WereldBasis SP OUR handmatig"
|
594
|
-
MAPPING[737]="WereldBasis BEN handmatig spoed"
|
595
|
-
MAPPING[738]="WereldPlus SHA"
|
596
|
-
MAPPING[739]="WereldBasis SP OUR spoed"
|
597
|
-
MAPPING[740]="WereldBasis SP OUR handmatig spoed"
|
598
|
-
MAPPING[744]="WereldPlus BEN"
|
599
|
-
MAPPING[745]="WereldPlus SHA handmatig"
|
600
|
-
MAPPING[751]="WereldPlus BEN handmatig"
|
601
|
-
MAPPING[752]="WereldPlus SHA spoed"
|
602
|
-
MAPPING[758]="WereldPlus BEN spoed"
|
603
|
-
MAPPING[759]="WereldPlus SHA handmatig spoed"
|
604
|
-
MAPPING[765]="WereldPlus BEN handmatig spoed"
|
605
|
-
MAPPING[766]="WereldPlus SHA overige instructies"
|
606
|
-
MAPPING[772]="WereldPlus BEN overige instructies"
|
607
|
-
MAPPING[773]="WereldPlus SHA handmatig overige instructies"
|
608
|
-
MAPPING[779]="WereldPlus BEN handmatig overige instructies"
|
609
|
-
MAPPING[780]="WereldPlus SHA spoed overige instructies"
|
610
|
-
MAPPING[786]="WereldPlus BEN spoed overige instructies"
|
611
|
-
MAPPING[787]="WereldPlus SHA handmatig spoed overige instructies"
|
612
|
-
MAPPING[793]="WereldPlus BEN handmatig spoed overige instructies"
|
613
|
-
MAPPING[800]="MiniTix entree"
|
614
|
-
MAPPING[801]="MiniTix loyalty uitgegeven punt"
|
615
|
-
MAPPING[802]="MiniTix loyalty betaling"
|
616
|
-
MAPPING[811]="Transactie MiniTix 1"
|
617
|
-
MAPPING[812]="Transactie MiniTix 2"
|
618
|
-
MAPPING[813]="Transactie MiniTix 3"
|
619
|
-
MAPPING[814]="Transactie MiniTix 4"
|
620
|
-
MAPPING[815]="Transactie MiniTix 5"
|
621
|
-
MAPPING[816]="Transactie MiniTix 6"
|
622
|
-
MAPPING[817]="Transactie MiniTix 7"
|
623
|
-
MAPPING[818]="Transactie MiniTix 8"
|
624
|
-
MAPPING[819]="Transactie MiniTix 9"
|
625
|
-
MAPPING[820]="Transactie MiniTix 10"
|
626
|
-
MAPPING[821]="Transactie MiniTix 11"
|
627
|
-
MAPPING[822]="Transactie MiniTix 12"
|
628
|
-
MAPPING[823]="Transactie MiniTix 13"
|
629
|
-
MAPPING[824]="Transactie MiniTix 14"
|
630
|
-
MAPPING[830]="Prepaid -1"
|
631
|
-
MAPPING[831]="Prepaid -2"
|
632
|
-
MAPPING[832]="Prepaid -3"
|
633
|
-
MAPPING[833]="Prepaid -4"
|
634
|
-
MAPPING[834]="Prepaid -5"
|
635
|
-
MAPPING[835]="Prepaid -6"
|
636
|
-
MAPPING[836]="Prepaid -7"
|
637
|
-
MAPPING[837]="Prepaid -8"
|
638
|
-
MAPPING[838]="Prepaid -9"
|
639
|
-
MAPPING[839]="Prepaid -10"
|
640
|
-
MAPPING[840]="Prepaid -11"
|
641
|
-
MAPPING[841]="Prepaid -12"
|
642
|
-
MAPPING[842]="Prepaid -13"
|
643
|
-
MAPPING[843]="Prepaid -14"
|
644
|
-
MAPPING[844]="Prepaid -15"
|
645
|
-
MAPPING[845]="Prepaid -16"
|
646
|
-
MAPPING[846]="Prepaid -17"
|
647
|
-
MAPPING[847]="Prepaid -18"
|
648
|
-
MAPPING[848]="Prepaid -19"
|
649
|
-
MAPPING[849]="Prepaid -20"
|
650
|
-
MAPPING[850]="Prepaid -21"
|
651
|
-
MAPPING[851]="Prepaid -22"
|
652
|
-
MAPPING[852]="Prepaid -23"
|
653
|
-
MAPPING[853]="Prepaid -24"
|
654
|
-
MAPPING[854]="Prepaid -25"
|
655
|
-
MAPPING[860]="Ingeleverde batch met cheques"
|
656
|
-
MAPPING[861]="Debitering buitenlandcheque"
|
657
|
-
MAPPING[862]="Creditering OGV cheque"
|
658
|
-
MAPPING[863]="Creditering incasso cheque"
|
659
|
-
MAPPING[864]="Creditering Quick cheque"
|
660
|
-
MAPPING[865]="Cheque op onze kas"
|
661
|
-
MAPPING[866]="Cheque onbetaald retour"
|
662
|
-
MAPPING[867]="Stoppayment bankcheque"
|
663
|
-
MAPPING[868]="Stoppayment particuliere cheque"
|
664
|
-
MAPPING[869]="Cheque op handelsbanken"
|
665
|
-
MAPPING[870]="WereldBasis OUR"
|
666
|
-
MAPPING[871]="WereldBasis OUR handmatig"
|
667
|
-
MAPPING[872]="WereldBasis OUR spoed"
|
668
|
-
MAPPING[873]="WereldBasis OUR handmatig spoed"
|
669
|
-
MAPPING[874]="WereldPlus OUR"
|
670
|
-
MAPPING[875]="WereldPlus OUR handmatig"
|
671
|
-
MAPPING[876]="WereldPlus OUR spoed"
|
672
|
-
MAPPING[877]="WereldPlus OUR handmatig spoed"
|
673
|
-
MAPPING[878]="WereldPlus OUR overige instructies"
|
674
|
-
MAPPING[879]="WereldPlus OUR handmatig overige instructies"
|
675
|
-
MAPPING[880]="WereldPlus OUR spoed overige instructies"
|
676
|
-
MAPPING[881]="WereldPlus OUR handmatig spoed overige instructies"
|
677
|
-
MAPPING[883]="Eurobetaling SHA handmatig"
|
678
|
-
MAPPING[884]="Eurobetaling BEN handmatig"
|
679
|
-
MAPPING[885]="Internetbankieren pro printopdracht"
|
680
|
-
MAPPING[886]="Internetbankieren pro iDEAL downloaden"
|
681
|
-
MAPPING[887]="Internetbankieren iDEAL downloaden"
|
682
|
-
MAPPING[888]="Internetbankieren pro iDEAL transactie informatie"
|
683
|
-
MAPPING[889]="Internetbankieren iDEAL transactie informatie"
|
684
|
-
MAPPING[890]="Internetbankieren pro downloaden"
|
685
|
-
MAPPING[891]="Internetbankieren pro raadplegen"
|
686
|
-
MAPPING[892]="Internetbankieren pro transactie informatie"
|
687
|
-
MAPPING[893]="Internetbankieren transactie informatie"
|
688
|
-
MAPPING[894]="MT942-berichten abonnement"
|
689
|
-
MAPPING[895]="MT942-berichten"
|
690
|
-
MAPPING[896]="Cashpool abonnement VV"
|
691
|
-
MAPPING[897]="Cashpool abonnement"
|
692
|
-
MAPPING[900]="Rabox"
|
693
|
-
MAPPING[901]="Telebankieren Extra abonnement"
|
694
|
-
MAPPING[902]="Telebankieren Extra entree"
|
695
|
-
MAPPING[903]="Telebankieren Extra pas"
|
696
|
-
MAPPING[904]="Telebankieren Extra abonnement buitenland"
|
697
|
-
MAPPING[905]="Telebankieren Extra entree buitenland"
|
698
|
-
MAPPING[908]="Telebankieren Extra entree incasso"
|
699
|
-
MAPPING[910]="Entree multibank"
|
700
|
-
MAPPING[911]="Telebankieren Extra entree rekeningbeheer"
|
701
|
-
MAPPING[912]="Telebankieren Extra entree autorisatie"
|
702
|
-
MAPPING[913]="Doorleveren rekeninginformatie voor ICM (SWIFT)"
|
703
|
-
MAPPING[914]="Telebankieren vrijgeven opdrachten entree"
|
704
|
-
MAPPING[915]="Abonnement multibank"
|
705
|
-
MAPPING[916]="Telebankieren Extra abonnement rekeningbeheer"
|
706
|
-
MAPPING[917]="Telebankieren Extra abonnement autorisatie"
|
707
|
-
MAPPING[918]="Telebankieren vrijgeven opdrachten abonnement"
|
708
|
-
MAPPING[919]="Rabo Alerts abonnement"
|
709
|
-
MAPPING[920]="Internetbankieren abonnement"
|
710
|
-
MAPPING[922]="Rabo Alerts e-mail"
|
711
|
-
MAPPING[923]="Rabo Alerts SMS"
|
712
|
-
MAPPING[924]="Rabo Mobiel Alerts e-mail"
|
713
|
-
MAPPING[925]="Rabo Bijschrijving Alerts"
|
714
|
-
MAPPING[926]="Rabo MobielBankieren abonnement"
|
715
|
-
MAPPING[927]="Abonnement Internet Services"
|
716
|
-
MAPPING[928]="Abonnement PIN/COMBI automaat (vast)"
|
717
|
-
MAPPING[929]="Abonnement CHIP-only automaat"
|
718
|
-
MAPPING[930]="Ombuiging bankgiro naar acceptgiro"
|
719
|
-
MAPPING[931]="Rekeninginformatie Rabo Swift entree"
|
720
|
-
MAPPING[933]="Rabo Mobiel abonnement"
|
721
|
-
MAPPING[934]="Internetbankieren downloaden"
|
722
|
-
MAPPING[935]="Rabo Mobiel Alerts abonnement"
|
723
|
-
MAPPING[936]="Rabo Mobiel Alerts SMS"
|
724
|
-
MAPPING[937]="Rabofoon bedrijven informatiekosten"
|
725
|
-
MAPPING[938]="Internetbankieren raadplegen"
|
726
|
-
MAPPING[939]="Rabo Mobiel Alerts SMS (leden)"
|
727
|
-
MAPPING[940]="Intra Rabo Cash Concentration (dagelijks)"
|
728
|
-
MAPPING[941]="Automatische Cash Concentration (dagelijks)"
|
729
|
-
MAPPING[942]="Automatische Cash Concentration (wekelijks)"
|
730
|
-
MAPPING[943]="Automatische Cash Concentration (maandelijks)"
|
731
|
-
MAPPING[944]="Abonnement PIN/COMBI automaat (mobiel)"
|
732
|
-
MAPPING[950]="Donatie van uw Rabobank Internetbankieren abonnement"
|
733
|
-
MAPPING[951]="Donatie van uw Rabobank (extra) Rekening-Courant"
|
734
|
-
MAPPING[952]="PIN betalingen Convenantkorting"
|
735
|
-
MAPPING[959]="Saldocompensatie"
|
736
|
-
MAPPING[960]="Beheerskosten"
|
737
|
-
MAPPING[961]="G-rekening"
|
738
|
-
MAPPING[962]="Samenstelling"
|
739
|
-
MAPPING[963]="Vreemde valuta rekening"
|
740
|
-
MAPPING[964]="Afsluitkosten Rabo Flex Krediet"
|
741
|
-
MAPPING[965]="Opening Rabo BetaalPakket"
|
742
|
-
MAPPING[966]="Opening Rabo BasisRekening"
|
743
|
-
MAPPING[967]="Rabo RiantPakket"
|
744
|
-
MAPPING[968]="Rabo RiantPakket met Rabocard"
|
745
|
-
MAPPING[969]="Rabo RiantPakket met Rabo GoldCard"
|
746
|
-
MAPPING[970]="Interhelp Extra"
|
747
|
-
MAPPING[974]="Rabo Ondernemers Pakket met startersvoordeel"
|
748
|
-
MAPPING[975]="Rekening-Courant"
|
749
|
-
MAPPING[976]="Extra Rekening-Courant"
|
750
|
-
MAPPING[977]="Rabo VerenigingsPakket"
|
751
|
-
MAPPING[978]="StudentenPakket"
|
752
|
-
MAPPING[979]="Rabo VerenigingsRekening"
|
753
|
-
MAPPING[980]="Betaalrekening"
|
754
|
-
MAPPING[981]="Betaalrekening met Europas"
|
755
|
-
MAPPING[982]="StudentenPakket met Rabocard"
|
756
|
-
MAPPING[984]="Rabo BasisRekening"
|
757
|
-
MAPPING[985]="Rabo BetaalPakket"
|
758
|
-
MAPPING[986]="Rabo TotaalPakket"
|
759
|
-
MAPPING[987]="Rabo TotaalPakket met Rabocard"
|
760
|
-
MAPPING[989]="Rabo OnlineKey"
|
761
|
-
MAPPING[990]="Rabopas"
|
762
|
-
MAPPING[991]="Jongerenpas"
|
763
|
-
MAPPING[992]="(Extra) Europas"
|
764
|
-
MAPPING[993]="(Extra) Rabocard"
|
765
|
-
MAPPING[994]="TopKidpas"
|
766
|
-
MAPPING[995]="(Extra) Rabo GoldCard"
|
767
|
-
MAPPING[996]="(Extra) Wereldpas"
|
768
|
-
MAPPING[997]="(Extra) Rabo BaseCard"
|
769
|
-
|
770
|
-
end
|