[FIX] ABN AMRO: Pick up IBAN account number in INTL formatted lines

This commit is contained in:
Stefan Rijnhart
2013-04-29 08:56:17 +02:00
committed by Guewen Baconnier

View File

@@ -294,7 +294,7 @@ class transaction(models.mem_bank_transaction):
if fields[2].startswith('/'):
self.remote_account = fields[2][1:].strip()
else:
self.message += ' ' + fields[2].strip()
self.remote_account = fields[2].strip()
# fourth column contains remote owner
self.remote_owner = (len(fields) > 3 and fields[3].strip() or
False)