Skip to content

Commit

Permalink
Fix Bigbank PDF importer
Browse files Browse the repository at this point in the history
Bigbank uses Estonian number format in their account transactions
statement, namley a comma for decimal separation. Therefore amounts
need to be parsed with the correct language code, and de_CH would
have ignored decimal places.
  • Loading branch information
MonkeySon authored and Nirus2000 committed Mar 28, 2024
1 parent 14378ec commit 1143874
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,6 @@ private void addAccountStatementTransaction()
@Override
protected long asAmount(String value)
{
return ExtractorUtils.convertToNumberLong(value, Values.Amount, "de", "CH");
return ExtractorUtils.convertToNumberLong(value, Values.Amount, "et", "EE");
}
}

0 comments on commit 1143874

Please sign in to comment.