reckon 0.5.1 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +50 -0
- data/.gitignore +2 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +74 -0
- data/Gemfile.lock +1 -5
- data/README.md +72 -16
- data/Rakefile +17 -1
- data/lib/reckon.rb +2 -5
- data/lib/reckon/app.rb +145 -71
- data/lib/reckon/cosine_similarity.rb +92 -89
- data/lib/reckon/csv_parser.rb +67 -122
- data/lib/reckon/date_column.rb +10 -0
- data/lib/reckon/ledger_parser.rb +11 -1
- data/lib/reckon/logger.rb +4 -0
- data/lib/reckon/money.rb +52 -51
- data/lib/reckon/version.rb +1 -1
- data/reckon.gemspec +1 -2
- data/spec/data_fixtures/51-sample.csv +8 -0
- data/spec/data_fixtures/51-tokens.yml +9 -0
- data/spec/data_fixtures/85-date-example.csv +2 -0
- data/spec/integration/another_bank_example/input.csv +9 -0
- data/spec/integration/another_bank_example/output.ledger +36 -0
- data/spec/integration/another_bank_example/test_args +1 -0
- data/spec/integration/austrian_example/input.csv +13 -0
- data/spec/integration/austrian_example/output.ledger +52 -0
- data/spec/integration/austrian_example/test_args +2 -0
- data/spec/integration/bom_utf8_file/input.csv +3 -0
- data/spec/integration/bom_utf8_file/output.ledger +4 -0
- data/spec/integration/bom_utf8_file/test_args +3 -0
- data/spec/integration/broker_canada_example/input.csv +12 -0
- data/spec/integration/broker_canada_example/output.ledger +48 -0
- data/spec/integration/broker_canada_example/test_args +1 -0
- data/spec/integration/chase/account_tokens_and_regex/output.ledger +36 -0
- data/spec/integration/chase/account_tokens_and_regex/test_args +2 -0
- data/spec/integration/chase/account_tokens_and_regex/tokens.yml +16 -0
- data/spec/integration/chase/default_account_names/output.ledger +36 -0
- data/spec/integration/chase/default_account_names/test_args +3 -0
- data/spec/integration/chase/input.csv +9 -0
- data/spec/integration/chase/learn_from_existing/learn.ledger +7 -0
- data/spec/integration/chase/learn_from_existing/output.ledger +36 -0
- data/spec/integration/chase/learn_from_existing/test_args +1 -0
- data/spec/integration/chase/simple/output.ledger +36 -0
- data/spec/integration/chase/simple/test_args +1 -0
- data/spec/integration/danish_kroner_nordea_example/input.csv +6 -0
- data/spec/integration/danish_kroner_nordea_example/output.ledger +24 -0
- data/spec/integration/danish_kroner_nordea_example/test_args +1 -0
- data/spec/integration/english_date_example/input.csv +3 -0
- data/spec/integration/english_date_example/output.ledger +12 -0
- data/spec/integration/english_date_example/test_args +1 -0
- data/spec/integration/extratofake/input.csv +24 -0
- data/spec/integration/extratofake/output.ledger +92 -0
- data/spec/integration/extratofake/test_args +1 -0
- data/spec/integration/french_example/input.csv +9 -0
- data/spec/integration/french_example/output.ledger +36 -0
- data/spec/integration/french_example/test_args +2 -0
- data/spec/integration/german_date_example/input.csv +3 -0
- data/spec/integration/german_date_example/output.ledger +12 -0
- data/spec/integration/german_date_example/test_args +1 -0
- data/spec/integration/harder_date_example/input.csv +5 -0
- data/spec/integration/harder_date_example/output.ledger +20 -0
- data/spec/integration/harder_date_example/test_args +1 -0
- data/spec/integration/ing/input.csv +3 -0
- data/spec/integration/ing/output.ledger +12 -0
- data/spec/integration/ing/test_args +1 -0
- data/spec/integration/intuit_mint_example/input.csv +7 -0
- data/spec/integration/intuit_mint_example/output.ledger +28 -0
- data/spec/integration/intuit_mint_example/test_args +1 -0
- data/spec/integration/invalid_header_example/input.csv +6 -0
- data/spec/integration/invalid_header_example/output.ledger +8 -0
- data/spec/integration/invalid_header_example/test_args +1 -0
- data/spec/integration/inversed_credit_card/input.csv +16 -0
- data/spec/integration/inversed_credit_card/output.ledger +64 -0
- data/spec/integration/inversed_credit_card/test_args +1 -0
- data/spec/integration/nationwide/input.csv +4 -0
- data/spec/integration/nationwide/output.ledger +16 -0
- data/spec/integration/nationwide/test_args +1 -0
- data/spec/integration/regression/issue_51_account_tokens/input.csv +8 -0
- data/spec/integration/regression/issue_51_account_tokens/output.ledger +32 -0
- data/spec/integration/regression/issue_51_account_tokens/test_args +4 -0
- data/spec/integration/regression/issue_51_account_tokens/tokens.yml +9 -0
- data/spec/integration/regression/issue_64_date_column/input.csv +3 -0
- data/spec/integration/regression/issue_64_date_column/output.ledger +8 -0
- data/spec/integration/regression/issue_64_date_column/test_args +1 -0
- data/spec/integration/regression/issue_73_account_token_matching/input.csv +2 -0
- data/spec/integration/regression/issue_73_account_token_matching/output.ledger +4 -0
- data/spec/integration/regression/issue_73_account_token_matching/test_args +6 -0
- data/spec/integration/regression/issue_73_account_token_matching/tokens.yml +8 -0
- data/spec/integration/regression/issue_85_date_example/input.csv +2 -0
- data/spec/integration/regression/issue_85_date_example/output.ledger +8 -0
- data/spec/integration/regression/issue_85_date_example/test_args +1 -0
- data/spec/integration/spanish_date_example/input.csv +3 -0
- data/spec/integration/spanish_date_example/output.ledger +12 -0
- data/spec/integration/spanish_date_example/test_args +1 -0
- data/spec/integration/suntrust/input.csv +7 -0
- data/spec/integration/suntrust/output.ledger +28 -0
- data/spec/integration/suntrust/test_args +1 -0
- data/spec/integration/test.sh +82 -0
- data/spec/integration/test_money_column/input.csv +3 -0
- data/spec/integration/test_money_column/output.ledger +8 -0
- data/spec/integration/test_money_column/test_args +1 -0
- data/spec/integration/two_money_columns/input.csv +5 -0
- data/spec/integration/two_money_columns/output.ledger +20 -0
- data/spec/integration/two_money_columns/test_args +1 -0
- data/spec/integration/yyyymmdd_date_example/input.csv +1 -0
- data/spec/integration/yyyymmdd_date_example/output.ledger +4 -0
- data/spec/integration/yyyymmdd_date_example/test_args +1 -0
- data/spec/reckon/app_spec.rb +18 -2
- data/spec/reckon/csv_parser_spec.rb +129 -129
- data/spec/reckon/ledger_parser_spec.rb +42 -5
- data/spec/reckon/money_column_spec.rb +24 -24
- data/spec/reckon/money_spec.rb +36 -42
- data/spec/spec_helper.rb +19 -0
- metadata +97 -22
- data/.travis.yml +0 -13
data/lib/reckon/date_column.rb
CHANGED
@@ -56,5 +56,15 @@ module Reckon
|
|
56
56
|
date.iso8601
|
57
57
|
end
|
58
58
|
|
59
|
+
def self.likelihood(entry)
|
60
|
+
date_score = 0
|
61
|
+
date_score += 10 if entry =~ /\b(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i
|
62
|
+
date_score += 5 if entry =~ /^[\-\/\.\d:\[\]]+$/
|
63
|
+
date_score += entry.gsub(/[^\-\/\.\d:\[\]]/, '').length if entry.gsub(/[^\-\/\.\d:\[\]]/, '').length > 3
|
64
|
+
date_score -= entry.gsub(/[\-\/\.\d:\[\]]/, '').length
|
65
|
+
date_score += 30 if entry =~ /^\d+[:\/\.-]\d+[:\/\.-]\d+([ :]\d+[:\/\.]\d+)?$/
|
66
|
+
date_score += 10 if entry =~ /^\d+\[\d+:GMT\]$/i
|
67
|
+
return date_score
|
68
|
+
end
|
59
69
|
end
|
60
70
|
end
|
data/lib/reckon/ledger_parser.rb
CHANGED
@@ -121,8 +121,14 @@ module Reckon
|
|
121
121
|
def parse(ledger)
|
122
122
|
@entries = []
|
123
123
|
new_entry = {}
|
124
|
+
in_comment = false
|
125
|
+
comment_chars = ';#%*|'
|
124
126
|
ledger.strip.split("\n").each do |entry|
|
125
|
-
|
127
|
+
# strip comment lines
|
128
|
+
in_comment = true if entry == 'comment'
|
129
|
+
in_comment = false if entry == 'end comment'
|
130
|
+
next if in_comment
|
131
|
+
next if entry =~ /^\s*[#{comment_chars}]/
|
126
132
|
|
127
133
|
# (date, type, code, description), type and code are optional
|
128
134
|
if (m = entry.match(%r{^(\d+[\d/-]+)\s+([*!])?\s*(\([^)]+\))?\s*(.*)$}))
|
@@ -134,7 +140,11 @@ module Reckon
|
|
134
140
|
desc: m[4].strip,
|
135
141
|
accounts: []
|
136
142
|
}
|
143
|
+
elsif entry =~ /^\s*$/ && new_entry[:date]
|
144
|
+
add_entry(new_entry)
|
145
|
+
new_entry = {}
|
137
146
|
elsif new_entry[:date] && entry =~ /^\s+/
|
147
|
+
LOGGER.info("Adding new account #{entry}")
|
138
148
|
new_entry[:accounts] << parse_account_line(entry)
|
139
149
|
else
|
140
150
|
LOGGER.info("Unknown entry type: #{entry}")
|
data/lib/reckon/money.rb
CHANGED
@@ -5,12 +5,13 @@ module Reckon
|
|
5
5
|
class Money
|
6
6
|
include Comparable
|
7
7
|
attr_accessor :amount, :currency, :suffixed
|
8
|
-
def initialize(
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
8
|
+
def initialize(amount, options = {})
|
9
|
+
@options = options
|
10
|
+
@amount_raw = amount
|
11
|
+
@raw = options[:raw]
|
12
|
+
|
13
|
+
@amount = parse(amount, options)
|
14
|
+
@amount = -@amount if options[:inverse]
|
14
15
|
@currency = options[:currency] || "$"
|
15
16
|
@suffixed = options[:suffixed]
|
16
17
|
end
|
@@ -19,11 +20,19 @@ module Reckon
|
|
19
20
|
return @amount
|
20
21
|
end
|
21
22
|
|
23
|
+
def to_s
|
24
|
+
return @options[:raw] ? "#{@amount_raw} | #{@amount}" : @amount
|
25
|
+
end
|
26
|
+
|
27
|
+
# unary minus
|
28
|
+
# ex
|
29
|
+
# m = Money.new
|
30
|
+
# -m
|
22
31
|
def -@
|
23
|
-
Money.new(
|
32
|
+
Money.new(-@amount, :currency => @currency, :suffixed => @suffixed)
|
24
33
|
end
|
25
34
|
|
26
|
-
def <=>(
|
35
|
+
def <=>(mon)
|
27
36
|
other_amount = mon.to_f
|
28
37
|
if @amount < other_amount
|
29
38
|
-1
|
@@ -34,7 +43,13 @@ module Reckon
|
|
34
43
|
end
|
35
44
|
end
|
36
45
|
|
37
|
-
def pretty(
|
46
|
+
def pretty(negate = false)
|
47
|
+
if @raw
|
48
|
+
return @amount_raw unless negate
|
49
|
+
|
50
|
+
return @amount_raw[0] == '-' ? @amount_raw[1..-1] : "-#{@amount_raw}"
|
51
|
+
end
|
52
|
+
|
38
53
|
if @suffixed
|
39
54
|
(@amount >= 0 ? " " : "") + sprintf("%0.2f #{@currency}", @amount * (negate ? -1 : 1))
|
40
55
|
else
|
@@ -42,71 +57,57 @@ module Reckon
|
|
42
57
|
end
|
43
58
|
end
|
44
59
|
|
45
|
-
def
|
60
|
+
def parse(value, options = {})
|
61
|
+
value = value.to_s
|
46
62
|
# Empty string is treated as money with value 0
|
47
|
-
return
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
value = value.
|
52
|
-
value = value.
|
53
|
-
|
54
|
-
|
55
|
-
any_number_regex = /^(.*?)([\d\.]+)/
|
56
|
-
|
57
|
-
# Prefer matching the money_format, match any number otherwise
|
58
|
-
m = value.match( money_format_regex ) ||
|
59
|
-
value.match( any_number_regex )
|
60
|
-
if m
|
61
|
-
amount = m[2].to_f
|
62
|
-
# Check whether the money had a - or (, which indicates negative amounts
|
63
|
-
if (m[1].match( /^[\(-]/ ) || m[1].match( /-$/ ))
|
64
|
-
amount *= -1
|
65
|
-
end
|
66
|
-
return Money.new( amount, options )
|
67
|
-
else
|
68
|
-
return nil
|
69
|
-
end
|
63
|
+
return value.to_f if value.to_s.empty?
|
64
|
+
|
65
|
+
invert = value.match(/^\(.*\)$/)
|
66
|
+
value = value.gsub(/[^0-9,.-]/, '')
|
67
|
+
value = value.tr('.', '').tr(',', '.') if options[:comma_separates_cents]
|
68
|
+
value = value.tr(',', '')
|
69
|
+
value = value.to_f
|
70
|
+
return invert ? -value : value
|
70
71
|
end
|
71
72
|
|
72
|
-
def Money::likelihood(
|
73
|
+
def Money::likelihood(entry)
|
73
74
|
money_score = 0
|
74
|
-
|
75
|
+
# digits separated by , or . with no more than 2 trailing digits
|
76
|
+
money_score += 40 if entry.match(/\d+[,.]\d{2}[^\d]*$/)
|
75
77
|
money_score += 10 if entry[/^\$?\-?\$?\d+[\.,\d]*?[\.,]\d\d$/]
|
76
78
|
money_score += 10 if entry[/\d+[\.,\d]*?[\.,]\d\d$/]
|
77
79
|
money_score += entry.gsub(/[^\d\.\-\+,\(\)]/, '').length if entry.length < 7
|
78
|
-
money_score -= entry.length if entry.length >
|
79
|
-
money_score -= 20 if entry !~ /^[\$\+\.\-,\d\(\)]+$/
|
80
|
+
money_score -= entry.length if entry.length > 12
|
81
|
+
money_score -= 20 if (entry !~ /^[\$\+\.\-,\d\(\)]+$/) && entry.length > 0
|
80
82
|
money_score
|
81
83
|
end
|
82
84
|
end
|
83
85
|
|
84
86
|
class MoneyColumn < Array
|
85
|
-
def initialize(
|
86
|
-
arr.each { |str|
|
87
|
+
def initialize(arr = [], options = {})
|
88
|
+
arr.each { |str| push(Money.new(str, options)) }
|
87
89
|
end
|
88
90
|
|
89
91
|
def positive?
|
90
|
-
|
91
|
-
return false if money < 0
|
92
|
+
each do |money|
|
93
|
+
return false if money && money < 0
|
92
94
|
end
|
93
95
|
true
|
94
96
|
end
|
95
97
|
|
96
|
-
def merge!(
|
98
|
+
def merge!(other_column)
|
97
99
|
invert = false
|
98
|
-
invert = true if
|
99
|
-
|
100
|
+
invert = true if positive? && other_column.positive?
|
101
|
+
each_with_index do |mon, i|
|
100
102
|
other = other_column[i]
|
101
|
-
return nil if
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
elsif mon == 0.00 && other != 0.00
|
103
|
+
return nil if !mon || !other
|
104
|
+
|
105
|
+
if mon != 0.0 && other == 0.0
|
106
|
+
self[i] = -mon if invert
|
107
|
+
elsif mon == 0.0 && other != 0.0
|
107
108
|
self[i] = other
|
108
109
|
else
|
109
|
-
|
110
|
+
self[i] = Money.new(0)
|
110
111
|
end
|
111
112
|
end
|
112
113
|
self
|
data/lib/reckon/version.rb
CHANGED
data/reckon.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
13
13
|
|
14
14
|
s.files = `git ls-files`.split("\n")
|
15
15
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
16
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
17
17
|
s.require_paths = ["lib"]
|
18
18
|
|
19
19
|
s.add_development_dependency "rspec", ">= 1.2.9"
|
@@ -21,6 +21,5 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.add_development_dependency "rantly", "= 1.2.0"
|
22
22
|
s.add_runtime_dependency "chronic", ">= 0.3.0"
|
23
23
|
s.add_runtime_dependency "highline", ">= 1.5.2"
|
24
|
-
s.add_runtime_dependency "terminal-table", ">= 1.4.2"
|
25
24
|
s.add_runtime_dependency "rchardet", ">= 1.8.0"
|
26
25
|
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
01/09/2015,05354 SUBWAY,8.19,,1000.00
|
2
|
+
02/18/2015,WENDY'S #6338,8.55,,1000.00
|
3
|
+
02/25/2015,WENDY'S #6338,8.55,,1000.00
|
4
|
+
02/25/2015,WENDY'S #6338,9.14,,1000.00
|
5
|
+
02/27/2015,WENDY'S #6338,5.85,,1000.00
|
6
|
+
03/09/2015,WENDY'S #6338,17.70,,1000.00
|
7
|
+
03/16/2015,WENDY'S #6338,11.15,,1000.00
|
8
|
+
03/23/2015,WENDY'S,10.12,,1000.00
|
@@ -0,0 +1,9 @@
|
|
1
|
+
DEBIT,2011/12/24,"HOST 037196321563 MO 12/22SLICEHOST",($85.00)
|
2
|
+
CHECK,2010/12/24,"CHECK 2656",($20.00)
|
3
|
+
DEBIT,2009/12/24,"GITHUB 041287430274 CA 12/22GITHUB 04",($7.00)
|
4
|
+
CREDIT,2008/12/24,"Some Company vendorpymt PPD ID: 59728JSL20",$3520.00
|
5
|
+
CREDIT,2007/12/24,"Blarg BLARG REVENUE PPD ID: 00jah78563",$1558.52
|
6
|
+
DEBIT,2006/12/24,"WEBSITE-BALANCE-17DEC09 12 12/17WEBSITE-BAL",$.23
|
7
|
+
DEBIT,2005/12/24,"WEBSITE-BALANCE-10DEC09 12 12/10WEBSITE-BAL",($0.96)
|
8
|
+
CREDIT,2004/12/24,"PAYPAL TRANSFER PPD ID: PAYPALSDSL",($116.22)
|
9
|
+
CREDIT,2003/12/24,"Some Company vendorpymt PPD ID: 5KL3832735",$2105.00
|
@@ -0,0 +1,36 @@
|
|
1
|
+
2003-12-24 CREDIT; Some Company vendorpymt PPD ID: 5KL3832735
|
2
|
+
Assets:Bank:Checking $2105.00
|
3
|
+
Income:Unknown
|
4
|
+
|
5
|
+
2004-12-24 CREDIT; PAYPAL TRANSFER PPD ID: PAYPALSDSL
|
6
|
+
Income:Unknown
|
7
|
+
Assets:Bank:Checking -$116.22
|
8
|
+
|
9
|
+
2005-12-24 DEBIT; WEBSITE-BALANCE-10DEC09 12 12/10WEBSITE-BAL
|
10
|
+
Expenses:Unknown
|
11
|
+
Assets:Bank:Checking -$0.96
|
12
|
+
|
13
|
+
2006-12-24 DEBIT; WEBSITE-BALANCE-17DEC09 12 12/17WEBSITE-BAL
|
14
|
+
Assets:Bank:Checking $0.23
|
15
|
+
Expenses:Unknown
|
16
|
+
|
17
|
+
2007-12-24 CREDIT; Blarg BLARG REVENUE PPD ID: 00jah78563
|
18
|
+
Assets:Bank:Checking $1558.52
|
19
|
+
Income:Unknown
|
20
|
+
|
21
|
+
2008-12-24 CREDIT; Some Company vendorpymt PPD ID: 59728JSL20
|
22
|
+
Assets:Bank:Checking $3520.00
|
23
|
+
Income:Unknown
|
24
|
+
|
25
|
+
2009-12-24 DEBIT; GITHUB 041287430274 CA 12/22GITHUB 04
|
26
|
+
Expenses:Unknown
|
27
|
+
Assets:Bank:Checking -$7.00
|
28
|
+
|
29
|
+
2010-12-24 CHECK; CHECK 2656
|
30
|
+
Expenses:Unknown
|
31
|
+
Assets:Bank:Checking -$20.00
|
32
|
+
|
33
|
+
2011-12-24 DEBIT; HOST 037196321563 MO 12/22SLICEHOST
|
34
|
+
Expenses:Unknown
|
35
|
+
Assets:Bank:Checking -$85.00
|
36
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
-f input.csv --unattended --account Assets:Bank:Checking
|
@@ -0,0 +1,13 @@
|
|
1
|
+
00075757575;Abbuchung Onlinebanking 654321098765 BG/000002462 BICBICBI AT654000000065432109 Thematische Universität Stadt ;22.01.2014;22.01.2014;-18,00;EUR
|
2
|
+
00075757575;333222111333222 222111333222 OG/000002461 BICBICBIXXX AT333000000003332221 Telekom Land AG RECHNUNG 11/13 333222111333222 ;17.01.2014;17.01.2014;-9,05;EUR
|
3
|
+
00075757575;Helm BG/000002460 10000 00007878787 Muster Dr.Beispiel-Vorname ;15.01.2014;15.01.2014;+120,00;EUR
|
4
|
+
00075757575;Gutschrift Dauerauftrag BG/000002459 BICBICBI AT787000000007878787 Muster Dr.Beispiel-Vorname ;15.01.2014;15.01.2014;+22,00;EUR
|
5
|
+
00075757575;Bezahlung Bankomat MC/000002458 0001 K1 06.01.UM 18.11 Bahn 8020 FSA\\Ort\10 10 2002200EUR ;07.01.2014;06.01.2014;-37,60;EUR
|
6
|
+
00075757575;Bezahlung Bankomat 10.33 MC/000002457 0001 K1 02.01.UM 10.33 Abcdef Electronic\\Wie n\1150 0400444 ;03.01.2014;02.01.2014;-46,42;EUR
|
7
|
+
00075757575;050055556666000 OG/000002456 BKAUATWWXXX AT555500000555566665 JKL Telekommm Stadt GmbH JKL Rechnung 555666555 ;03.01.2014;03.01.2014;-17,15;EUR
|
8
|
+
00075757575;Abbuchung Einzugsermächtigung OG/000002455 INTERNATIONALER AUTOMOBIL-, 10000 00006655665 ;02.01.2014;02.01.2014;-17,40;EUR
|
9
|
+
00075757575;POLIZZE 1/01/0101010 Fondsge010101010101nsverOG/000002454 BICBICBIXXX AT101000000101010101 VERSICHERUNG NAMEDERV AG POLIZZE 1/01/0101010 Fondsgebundene Lebensversicherung - fällig 01.01. 2014 Folg eprämie ;02.01.2014;02.01.2014;-31,71;EUR
|
10
|
+
00075757575;POLIZZE 1/01/0101012 Rentenv010101010102- fälOG/000002453 BICBICBIXXX AT101000000101010102 VERSICHERUNG NAMEDERV AG POLIZZE 1/01/0101012 Rentenversicherung - fällig 01.01.20 14 Folgeprämi e ;02.01.2014;02.01.2014;-32,45;EUR
|
11
|
+
00075757575;Anlass VD/000002452 BKAUATWWBRN AT808800080880880880 Dipl.Ing.Dr. Berta Beispiel ;02.01.2014;02.01.2014;+61,90;EUR
|
12
|
+
00075757575;Abbuchung Onlinebanking 000009999999 BG/000002451 BICBICBI AT099000000009999999 Asdfjklöasdf Asdfjklöasdfjklöasdf ;02.01.2014;02.01.2014;-104,69;EUR
|
13
|
+
00075757575;Abbuchung Onlinebanking FE/000002450 AT556600055665566556 CD Stadt Efghij Club Dipl.Ing. Max Muster M005566 - Mitgliedsbeitrag 2014 ;02.01.2014;02.01.2014;-39,00;EUR
|
@@ -0,0 +1,52 @@
|
|
1
|
+
2014-01-02 00075757575; Anlass VD/000002452 BKAUATWWBRN AT808800080880880880 Dipl.Ing.Dr. Berta Beispiel; 02.01.2014; EUR
|
2
|
+
Assets:Bank:Checking $61.90
|
3
|
+
Income:Unknown
|
4
|
+
|
5
|
+
2014-01-02 00075757575; Abbuchung Einzugsermächtigung OG/000002455 INTERNATIONALER AUTOMOBIL-, 10000 00006655665; 02.01.2014; EUR
|
6
|
+
Income:Unknown
|
7
|
+
Assets:Bank:Checking -$17.40
|
8
|
+
|
9
|
+
2014-01-02 00075757575; POLIZZE 1/01/0101010 Fondsge010101010101nsverOG/000002454 BICBICBIXXX AT101000000101010101 VERSICHERUNG NAMEDERV AG POLIZZE 1/01/0101010 Fondsgebundene Lebensversicherung - fällig 01.01. 2014 Folg eprämie; 02.01.2014; EUR
|
10
|
+
Income:Unknown
|
11
|
+
Assets:Bank:Checking -$31.71
|
12
|
+
|
13
|
+
2014-01-02 00075757575; POLIZZE 1/01/0101012 Rentenv010101010102- fälOG/000002453 BICBICBIXXX AT101000000101010102 VERSICHERUNG NAMEDERV AG POLIZZE 1/01/0101012 Rentenversicherung - fällig 01.01.20 14 Folgeprämi e; 02.01.2014; EUR
|
14
|
+
Income:Unknown
|
15
|
+
Assets:Bank:Checking -$32.45
|
16
|
+
|
17
|
+
2014-01-02 00075757575; Abbuchung Onlinebanking FE/000002450 AT556600055665566556 CD Stadt Efghij Club Dipl.Ing. Max Muster M005566 - Mitgliedsbeitrag 2014; 02.01.2014; EUR
|
18
|
+
Income:Unknown
|
19
|
+
Assets:Bank:Checking -$39.00
|
20
|
+
|
21
|
+
2014-01-02 00075757575; Abbuchung Onlinebanking 000009999999 BG/000002451 BICBICBI AT099000000009999999 Asdfjklöasdf Asdfjklöasdfjklöasdf; 02.01.2014; EUR
|
22
|
+
Income:Unknown
|
23
|
+
Assets:Bank:Checking -$104.69
|
24
|
+
|
25
|
+
2014-01-03 00075757575; 050055556666000 OG/000002456 BKAUATWWXXX AT555500000555566665 JKL Telekommm Stadt GmbH JKL Rechnung 555666555; 03.01.2014; EUR
|
26
|
+
Income:Unknown
|
27
|
+
Assets:Bank:Checking -$17.15
|
28
|
+
|
29
|
+
2014-01-03 00075757575; Bezahlung Bankomat 10.33 MC/000002457 0001 K1 02.01.UM 10.33 Abcdef Electronic\\Wie n\1150 0400444; 02.01.2014; EUR
|
30
|
+
Income:Unknown
|
31
|
+
Assets:Bank:Checking -$46.42
|
32
|
+
|
33
|
+
2014-01-07 00075757575; Bezahlung Bankomat MC/000002458 0001 K1 06.01.UM 18.11 Bahn 8020 FSA\\Ort\10 10 2002200EUR; 06.01.2014; EUR
|
34
|
+
Income:Unknown
|
35
|
+
Assets:Bank:Checking -$37.60
|
36
|
+
|
37
|
+
2014-01-15 00075757575; Helm BG/000002460 10000 00007878787 Muster Dr.Beispiel-Vorname; 15.01.2014; EUR
|
38
|
+
Assets:Bank:Checking $120.00
|
39
|
+
Income:Unknown
|
40
|
+
|
41
|
+
2014-01-15 00075757575; Gutschrift Dauerauftrag BG/000002459 BICBICBI AT787000000007878787 Muster Dr.Beispiel-Vorname; 15.01.2014; EUR
|
42
|
+
Assets:Bank:Checking $22.00
|
43
|
+
Income:Unknown
|
44
|
+
|
45
|
+
2014-01-17 00075757575; 333222111333222 222111333222 OG/000002461 BICBICBIXXX AT333000000003332221 Telekom Land AG RECHNUNG 11/13 333222111333222; 17.01.2014; EUR
|
46
|
+
Income:Unknown
|
47
|
+
Assets:Bank:Checking -$9.05
|
48
|
+
|
49
|
+
2014-01-22 00075757575; Abbuchung Onlinebanking 654321098765 BG/000002462 BICBICBI AT654000000065432109 Thematische Universität Stadt; 22.01.2014; EUR
|
50
|
+
Income:Unknown
|
51
|
+
Assets:Bank:Checking -$18.00
|
52
|
+
|
@@ -0,0 +1,3 @@
|
|
1
|
+
"Date","Time","TimeZone","Name","Type","Status","Currency","Gross","Fee","Net","From Email Address","To Email Address","Transaction ID","Shipping Address","Address Status","Item Title","Item ID","Shipping and Handling Amount","Insurance Amount","Sales Tax","Option 1 Name","Option 1 Value","Option 2 Name","Option 2 Value","Reference Txn ID","Invoice Number","Custom Number","Quantity","Receipt ID","Balance","Address Line 1","Address Line 2/District/Neighborhood","Town/City","State/Province/Region/County/Territory/Prefecture/Republic","Zip/Postal Code","Country","Contact Phone Number","Subject","Note","Country Code","Balance Impact"
|
2
|
+
"12/27/2019","19:33:49","PST","Humble Bundle, Inc.","Express Checkout Payment","Completed","USD","-7.49","0.00","-7.49","test@gmail.com","test@humblebundle.com","","","Non-Confirmed","Purchase ","","0.00","","0.00","","","","","","","","1","","705.37","","","","","","","","","","","Debit"
|
3
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
2014-02-10,2014-02-10,Interest,ISHARES S&P/TSX CAPPED REIT IN,XRE,179,,,12.55,CAD
|
2
|
+
2014-01-16,2014-01-16,Reinvestment,ISHARES GLOBAL AGRICULTURE IND,COW,3,,,-81.57,CAD
|
3
|
+
2014-01-16,2014-01-16,Contribution,CONTRIBUTION,,,,,600.00,CAD
|
4
|
+
2014-01-16,2014-01-16,Interest,ISHARES GLOBAL AGRICULTURE IND,COW,200,,,87.05,CAD
|
5
|
+
2014-01-14,2014-01-14,Reinvestment,BMO NASDAQ 100 EQTY HEDGED TO,ZQQ,2,,,-54.72,CAD
|
6
|
+
2014-01-07,2014-01-10,Sell,BMO NASDAQ 100 EQTY HEDGED TO,ZQQ,-300,27.44,CDN,8222.05,CAD
|
7
|
+
2014-01-07,2014-01-07,Interest,BMO S&P/TSX EQUAL WEIGHT BKS I,ZEB,250,,,14.00,CAD
|
8
|
+
2013-07-02,2013-07-02,Dividend,SELECT SECTOR SPDR FD SHS BEN,XLB,130,,,38.70,USD
|
9
|
+
2013-06-27,2013-06-27,Dividend,ICICI BK SPONSORED ADR,IBN,100,,,66.70,USD
|
10
|
+
2013-06-19,2013-06-24,Buy,ISHARES S&P/TSX CAPPED REIT IN,XRE,300,15.90,CDN,-4779.95,CAD
|
11
|
+
2013-06-17,2013-06-17,Contribution,CONTRIBUTION,,,,,600.00,CAD
|
12
|
+
2013-05-22,2013-05-22,Dividend,NATBK,NA,70,,,58.10,CAD
|
@@ -0,0 +1,48 @@
|
|
1
|
+
2013-05-22 2013-05-22; Dividend; NATBK; NA; 70; CAD
|
2
|
+
Assets:Bank:Checking $58.10
|
3
|
+
Income:Unknown
|
4
|
+
|
5
|
+
2013-06-17 2013-06-17; Contribution; CONTRIBUTION; CAD
|
6
|
+
Assets:Bank:Checking $600.00
|
7
|
+
Income:Unknown
|
8
|
+
|
9
|
+
2013-06-19 2013-06-24; Buy; ISHARES S&P/TSX CAPPED REIT IN; XRE; 300; 15.90; CDN; CAD
|
10
|
+
Income:Unknown
|
11
|
+
Assets:Bank:Checking -$4779.95
|
12
|
+
|
13
|
+
2013-06-27 2013-06-27; Dividend; ICICI BK SPONSORED ADR; IBN; 100; USD
|
14
|
+
Assets:Bank:Checking $66.70
|
15
|
+
Income:Unknown
|
16
|
+
|
17
|
+
2013-07-02 2013-07-02; Dividend; SELECT SECTOR SPDR FD SHS BEN; XLB; 130; USD
|
18
|
+
Assets:Bank:Checking $38.70
|
19
|
+
Income:Unknown
|
20
|
+
|
21
|
+
2014-01-07 2014-01-10; Sell; BMO NASDAQ 100 EQTY HEDGED TO; ZQQ; -300; 27.44; CDN; CAD
|
22
|
+
Assets:Bank:Checking $8222.05
|
23
|
+
Income:Unknown
|
24
|
+
|
25
|
+
2014-01-07 2014-01-07; Interest; BMO S&P/TSX EQUAL WEIGHT BKS I; ZEB; 250; CAD
|
26
|
+
Assets:Bank:Checking $14.00
|
27
|
+
Income:Unknown
|
28
|
+
|
29
|
+
2014-01-14 2014-01-14; Reinvestment; BMO NASDAQ 100 EQTY HEDGED TO; ZQQ; 2; CAD
|
30
|
+
Income:Unknown
|
31
|
+
Assets:Bank:Checking -$54.72
|
32
|
+
|
33
|
+
2014-01-16 2014-01-16; Contribution; CONTRIBUTION; CAD
|
34
|
+
Assets:Bank:Checking $600.00
|
35
|
+
Income:Unknown
|
36
|
+
|
37
|
+
2014-01-16 2014-01-16; Interest; ISHARES GLOBAL AGRICULTURE IND; COW; 200; CAD
|
38
|
+
Assets:Bank:Checking $87.05
|
39
|
+
Income:Unknown
|
40
|
+
|
41
|
+
2014-01-16 2014-01-16; Reinvestment; ISHARES GLOBAL AGRICULTURE IND; COW; 3; CAD
|
42
|
+
Income:Unknown
|
43
|
+
Assets:Bank:Checking -$81.57
|
44
|
+
|
45
|
+
2014-02-10 2014-02-10; Interest; ISHARES S&P/TSX CAPPED REIT IN; XRE; 179; CAD
|
46
|
+
Assets:Bank:Checking $12.55
|
47
|
+
Income:Unknown
|
48
|
+
|