Metadata-Version: 2.1
Name: hb_bank_statement_machine_learning
Version: 0.1.0
Summary: Define the account and the party to use on bank statement line with a machine learning
Home-page: https://hashbang.fr/
Author: Hashbang
Author-email: contact@hashbang.fr
License: GPL-3
Project-URL: Bug Tracker, https://gitlab.com/hashbangfr/tryton-modules/hb_bank_statement_machine_learning/-/issues
Project-URL: Source Code, https://gitlab.com/hashbangfr/tryton-modules/hb_bank_statement_machine_learning/
Keywords: tryton,machine learning
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Framework :: Tryton
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Legal Industry
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Office/Business
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
License-File: LICENSE

#########################################
Hb Bank Statement Machine Learning Module
#########################################

This module add a machine learning on the **account.bank.statement** to predict
the party and the account to use for a new line.

*******
Install
*******

Dependencies for ArchLinux

.. code-block::

    sudo pacman -S cairo pkgconf gobject-introspection


Dependencies for debian


.. code-block::

    sudo apt-get install libcairo2-dev libgirepository1.0-dev


Install the package

.. code-block::

    # installs python deps
    pip install -e .
    # createdb postgresql database
    createdb bank_stmt_ml
    # initialize database
    trytond-admin -c trytond-dev.conf -d bank_stmt_ml --all
    # install module hb_tryton
    trytond-admin -c trytond-dev.conf -d bank_stmt_ml -u hb_bank_statement_machine_learning --activate-dependencies

*********
Low level
*********

The machine learning is added on the **acount.statement.line**, the machine learning is based on the field number on the line,
this field must be filled

.. code-block::

    pool = Pool()
    Line = pool.get('account.statement.line')
    line = Line()
    line.number = 'My number'
    line.set_account_and_party_from_ml()
    assert line.party
    assert line.account

*****
Usage
*****

An on_change method on the field number exist to predict the fields party and account from the interface

*********
CHANGELOG
*********

0.1.0 (2021-09-28)
------------------

* Implemented the machine learning
* Implemented the on change method on the fields number


