1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
.. image:: https://travis-ci.org/themalkolm/ofxstatement-seb.svg?branch=master
:target: https://travis-ci.org/themalkolm/ofxstatement-seb
This is a collection of parsers for proprietary statement formats, produced by
`SEB`_. It parses ``Export.xlsx`` file exported from internet bank.
It is a plugin for `ofxstatement`_.
.. _SEB: http://seb.se
.. _ofxstatement: https://github.com/kedder/ofxstatement
Configuration
=============
There is only one configuration option ``brief``. Turn it on if you want to parse description
and replace it with the actual card description while stripping off any know additional
data e.g:
``WIRSTRÖMS PU/14-12-31`` -> ``WIRSTRÖMS PU``
Why? This way similar transactions will have similar descriptions and it will allow you to
group transactions using simple text grouping. Otherwise date suffixes will prevent this and
make every transaction description unique.
Locale
======
You can configure exact locale to use during parsing. Here is example how to configure it
shown as default configuration you always have.
.. code-block::
[default]
plugin = seb
locale = sv_SE
Example
=======
.. code-block::
[seb]
plugin = seb
brief = 1
|