msturm / abncsv2qif

Convert ABN Amro CSV bank statements to QIF
11 stars 1 forks source link

Issues while parsing SEPA iDEAL transactions #2

Open ChocoMelvin opened 5 years ago

ChocoMelvin commented 5 years ago

Sadly I cannot post the input here due to privacy issues but if you'd PM me I could provide you with an example. Good work though, works like a charm except for SEPA iDEAL transactions!

ChocoMelvin commented 5 years ago

To fix the Issue I have added

Line 65:

    elif desc.startswith("SEPA iDEAL"):
        result['name'] = re.findall(".*Naam: (.*) Omschrijving:", desc)[0].strip()
        result['description'] = remove_33_char_space(re.findall(".*(Omschrijving: .*)", desc)[0])[14:].strip()
bgrolleman commented 5 years ago

Not at my laptop the next couple of days, I'll test and apply the patch this weekend.

I'll send you a PM