diff --git a/account_bank_statement_import_move_line/README.rst b/account_bank_statement_import_move_line/README.rst index e06fa81..3f62625 100644 --- a/account_bank_statement_import_move_line/README.rst +++ b/account_bank_statement_import_move_line/README.rst @@ -1,64 +1 @@ -.. 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 - -======================================= -Account Bank Statement Import Move Line -======================================= - -This module adds a button to bank statement form view to open a wizard to allow -filtering, selecting and importing lines form journal items into the bank -statement. - -Usage -===== - -#. Go to Invoicing > Dashboard. -#. Create a new bank statement from a bank journal. -#. Click button "Import Journal Items". -#. Select filtering options. -#. Click on button "Add All Move Lines" to auto-select the move lines matching - the selected criteria or click on Add an item to manually select the move - lines filtered by the criteria. -#. Click on button "Create Statement Lines". - - -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/174/10.0 - -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 smash it by providing detailed and welcomed feedback. - -Credits -======= - -Images ------- - -* Odoo Community Association: `Icon `_. - -Contributors ------------- - -* Luis M. Ontalba luis.martinez@tecnativa.com> - -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. +**This file is going to be generated by oca-gen-addon-readme.** diff --git a/account_bank_statement_import_move_line/__init__.py b/account_bank_statement_import_move_line/__init__.py index 0d5f7d9..9dd4211 100644 --- a/account_bank_statement_import_move_line/__init__.py +++ b/account_bank_statement_import_move_line/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import models diff --git a/account_bank_statement_import_move_line/__manifest__.py b/account_bank_statement_import_move_line/__manifest__.py index dc11550..2766111 100644 --- a/account_bank_statement_import_move_line/__manifest__.py +++ b/account_bank_statement_import_move_line/__manifest__.py @@ -1,11 +1,11 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Tecnativa - Luis M. Ontalba # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html { 'name': 'Bank statement import move lines', - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'category': 'Accounting', + 'summary': 'Import journal items into bank statement', 'author': 'Tecnativa, ' 'Odoo Community Association (OCA)', 'website': 'https://www.tecnativa.com', diff --git a/account_bank_statement_import_move_line/models/__init__.py b/account_bank_statement_import_move_line/models/__init__.py index 88bf68e..7343570 100644 --- a/account_bank_statement_import_move_line/models/__init__.py +++ b/account_bank_statement_import_move_line/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import account_move_line diff --git a/account_bank_statement_import_move_line/models/account_move_line.py b/account_bank_statement_import_move_line/models/account_move_line.py index dc305b4..5b467b9 100644 --- a/account_bank_statement_import_move_line/models/account_move_line.py +++ b/account_bank_statement_import_move_line/models/account_move_line.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Tecnativa - Luis M. Ontalba # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html diff --git a/account_bank_statement_import_move_line/readme/CONTRIBUTORS.rst b/account_bank_statement_import_move_line/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..4556d8d --- /dev/null +++ b/account_bank_statement_import_move_line/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Luis M. Ontalba luis.martinez@tecnativa.com> diff --git a/account_bank_statement_import_move_line/readme/DESCRIPTION.rst b/account_bank_statement_import_move_line/readme/DESCRIPTION.rst new file mode 100644 index 0000000..db08a01 --- /dev/null +++ b/account_bank_statement_import_move_line/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +This module adds a button to bank statement form view to open a wizard to allow +filtering, selecting and importing lines form journal items into the bank +statement. diff --git a/account_bank_statement_import_move_line/readme/USAGE.rst b/account_bank_statement_import_move_line/readme/USAGE.rst new file mode 100644 index 0000000..2be8564 --- /dev/null +++ b/account_bank_statement_import_move_line/readme/USAGE.rst @@ -0,0 +1,8 @@ +#. Go to Invoicing > Dashboard. +#. Create a new bank statement from a bank journal. +#. Click button "Import Journal Items". +#. Select filtering options. +#. Click on button "Add All Move Lines" to auto-select the move lines matching + the selected criteria or click on Add an item to manually select the move + lines filtered by the criteria. +#. Click on button "Create Statement Lines". diff --git a/account_bank_statement_import_move_line/tests/__init__.py b/account_bank_statement_import_move_line/tests/__init__.py index afc078a1..f7ea1a8 100644 --- a/account_bank_statement_import_move_line/tests/__init__.py +++ b/account_bank_statement_import_move_line/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0 from . import test_account_bank_statement_import_move_line diff --git a/account_bank_statement_import_move_line/tests/test_account_bank_statement_import_move_line.py b/account_bank_statement_import_move_line/tests/test_account_bank_statement_import_move_line.py index 549728a..0c3f403 100644 --- a/account_bank_statement_import_move_line/tests/test_account_bank_statement_import_move_line.py +++ b/account_bank_statement_import_move_line/tests/test_account_bank_statement_import_move_line.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Tecnativa - Luis M. Ontalba # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0 diff --git a/account_bank_statement_import_move_line/wizards/__init__.py b/account_bank_statement_import_move_line/wizards/__init__.py index d11bc37..062fed5 100644 --- a/account_bank_statement_import_move_line/wizards/__init__.py +++ b/account_bank_statement_import_move_line/wizards/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from . import account_statement_line_create diff --git a/account_bank_statement_import_move_line/wizards/account_statement_line_create.py b/account_bank_statement_import_move_line/wizards/account_statement_line_create.py index 433e87e..ad75d5d 100644 --- a/account_bank_statement_import_move_line/wizards/account_statement_line_create.py +++ b/account_bank_statement_import_move_line/wizards/account_statement_line_create.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Tecnativa - Luis M. Ontalba # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html