diff --git a/account_statement_transactionid_import/README.rst b/account_statement_transactionid_import/README.rst new file mode 100644 index 00000000..bd961af4 --- /dev/null +++ b/account_statement_transactionid_import/README.rst @@ -0,0 +1,59 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +==================================== +Bank statement transaction ID import +==================================== + +This module extends the functionality of +account_statement_base_import, in order to add both importation +and auto-completion for the "transaction_ref" field added in +base_transaction_id. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/98/9.0 + +Known issues / Roadmap +====================== + +* ... + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of +trouble, please check there if your issue has already been reported. If you +spotted it first, help us smashing it by providing a detailed and welcomed +feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Joël Grand-Guillaume +* Matthieu Dietrich + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_statement_transactionid_import/__openerp__.py b/account_statement_transactionid_import/__openerp__.py index 7fef8bee..0ac558fe 100644 --- a/account_statement_transactionid_import/__openerp__.py +++ b/account_statement_transactionid_import/__openerp__.py @@ -21,7 +21,7 @@ { 'name': "Bank statement transactionID import", - 'version': '1.0', + 'version': '9.0.1.0.0', 'author': "Camptocamp,Odoo Community Association (OCA)", 'maintainer': 'Camptocamp', 'category': 'Finance', @@ -30,28 +30,9 @@ 'account_statement_base_import', 'base_transaction_id' ], - 'description': """ - This module brings generic methods and fields on bank statement to deal with - the importation of different bank and offices that uses transactionID. - - This module allows you to import your bank transactions with a standard .csv - or .xls file (you'll find samples in the 'data' folder). It respects the - chosen profile (model provided by the account_statement_ext module) to - generate the entries. - - This module can handle a commission taken by the payment office and has the - following format: - - * transaction_id: the transaction ID given by the bank/office. It is used as - reference in the generated entries and is useful for reconciliation process - * date: date of the payment - * amount: amount paid in the currency of the journal used in the importation - profile - * commission_amount: amount of the comission for each line - * label: the comunication given by the payment office, used as communication - in the generated entries. - """, - 'data': ['data/completion_rule_data.xml'], + 'data': [ + 'data/completion_rule_data.xml' + ], 'test': [ 'test/sale.yml', 'test/completion_transactionid_test.yml',