Skip to content

Commit

Permalink
Modify Tradegate AG PDF-Importer to support new transaction (#4340)
Browse files Browse the repository at this point in the history
Closes #4338
  • Loading branch information
Nirus2000 authored Nov 9, 2024
1 parent 4778ed9 commit 12beed4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,10 @@ private <T extends Transaction<?>> void addTaxesSectionsTransaction(T transactio
.assign((t, v) -> processTaxEntries(t, v, type))

// @formatter:off
// Abgeführter Kirchensteuer -X,XX EUR
// Abgeführte Kirchensteuer -0,63 EUR
// @formatter:on
.section("tax", "currency").optional() //
.match("^Abgef.hrter Kirchensteuer \\-(?<tax>[\\.,\\d]+) (?<currency>[\\w]{3})$") //
.match("^Abgef.hrte Kirchensteuer \\-(?<tax>[\\.,\\d]+) (?<currency>[\\w]{3})$") //
.assign((t, v) -> processTaxEntries(t, v, type));
}
}

0 comments on commit 12beed4

Please sign in to comment.