firefly-iii-fints-importer icon indicating copy to clipboard operation
firefly-iii-fints-importer copied to clipboard

DKB Import: BookingText vs. Description

Open TyrionWarMage opened this issue 2 months ago • 1 comments

With the new DKB FinTs Server, i found that the description string is just something like "Girokartenumsatz", and also no notes.

Here is an example (only relevant fields): [bookingText:protected] => ONLINE-UEBERWEISUNG [description1:protected] => Urlaub Zurück [description2:protected] => [structuredDescription:protected] => Array ( [SVWZ] => Urlaub Zurück )

After looking into the data, i found this is due to:

  • BookingText taking precedence over the description: https://github.com/bnw/firefly-iii-fints-importer/blob/822b8f4702cbceee18a776f887731a2f5b297bba/app/TransactionsToFireflySender.php#L87
  • Notes hardcoded to ABWA. https://github.com/bnw/firefly-iii-fints-importer/blob/822b8f4702cbceee18a776f887731a2f5b297bba/app/TransactionsToFireflySender.php#L119

Is there a reason for that? Most inline with how it worked before, would probably be using SVWZ description in case ABWA is absent? However, i don't see why bookingText is taking precendence over description? This already resulted in problems in the past, because i need to duplicate all firefly rules, for working with description and notes.

TyrionWarMage avatar Dec 09 '24 12:12 TyrionWarMage