|
@@ -82,32 +82,33 @@ class BaseTransactionParser(object):
|
82
|
82
|
class MbankTransaction(BaseTransaction):
|
83
|
83
|
"""Item in an Mbank CSV"""
|
84
|
84
|
|
85
|
|
-
|
86
|
|
-
|
87
|
|
-
|
88
|
|
-
|
89
|
|
-
|
90
|
|
-
|
91
|
|
-
|
92
|
|
-
|
93
|
|
-
|
94
|
|
-
|
95
|
|
-
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
96
|
97
|
|
97
|
98
|
def __init__(self, line):
|
98
|
99
|
fields = [self._cleanup_field(f) for f in line.split(";")]
|
99
|
|
- self.date_r = self._convert_date(fields.pop(0))
|
100
|
|
- self.date_b = self._convert_date(fields.pop(0))
|
101
|
|
- __ = fields.pop()
|
102
|
|
- self.new_balance = self._parse_currency(fields.pop())
|
103
|
|
- amount = self._parse_currency(fields.pop())
|
|
100
|
+ self.date_r = self._convert_date(fields.pop(0))
|
|
101
|
+ self.date_b = self._convert_date(fields.pop(0))
|
|
102
|
+ __ = fields.pop()
|
|
103
|
+ self.new_balance = self._parse_currency(fields.pop())
|
|
104
|
+ amount = self._parse_currency(fields.pop())
|
104
|
105
|
if amount >= 0:
|
105
|
106
|
self.amountd = amount
|
106
|
107
|
self.amountw = 0
|
107
|
108
|
else:
|
108
|
109
|
self.amountd = 0
|
109
|
110
|
self.amountw = -amount
|
110
|
|
- self._scrap = fields
|
|
111
|
+ self._scrap = fields
|
111
|
112
|
|
112
|
113
|
def _cleanup_field(self, field):
|
113
|
114
|
x = ' '.join(_unquote(field).strip().split())
|