From 6ae943bd7d01435083c197f198d7c97484825c75 Mon Sep 17 00:00:00 2001 From: Abraham Anes Date: Thu, 28 Mar 2019 13:10:55 +0100 Subject: [PATCH] [12.0][MIG] account_move_reconcile_helper --- account_move_reconcile_helper/README.rst | 70 ++- account_move_reconcile_helper/__manifest__.py | 5 +- .../models/account_move_line.py | 1 - .../readme/CONTRIBUTORS.rst | 1 + .../readme/DESCRIPTION.rst | 14 + .../static/description/index.html | 426 ++++++++++++++++++ .../test_account_move_reconcile_helper.py | 1 - .../views/account_move_line.xml | 2 +- 8 files changed, 489 insertions(+), 31 deletions(-) create mode 100644 account_move_reconcile_helper/readme/CONTRIBUTORS.rst create mode 100644 account_move_reconcile_helper/readme/DESCRIPTION.rst create mode 100644 account_move_reconcile_helper/static/description/index.html diff --git a/account_move_reconcile_helper/README.rst b/account_move_reconcile_helper/README.rst index 71cf6611..9e4008e0 100644 --- a/account_move_reconcile_helper/README.rst +++ b/account_move_reconcile_helper/README.rst @@ -1,64 +1,86 @@ -.. 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 Move Reconcile Helper ============================= +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--reconcile-lightgray.png?logo=github + :target: https://github.com/OCA/account-reconcile/tree/12.0/account_move_reconcile_helper + :alt: OCA/account-reconcile +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/account-reconcile-12-0/account-reconcile-12-0-account_move_reconcile_helper + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/98/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + + Provides tools to facilitate reconciliation. * Display a button on Journal entries list to show reconciled lines. * Added Balance field in Journal entries list (this feature is provided by account_balance_line). -.. image:: ./static/docs/journal_entries_1.png +.. image:: https://raw.githubusercontent.com/OCA/account-reconcile/12.0/account_move_reconcile_helper/static/docs/journal_entries_1.png :alt: Journal entries :scale: 50 % -.. image:: ./static/docs/journal_entries_2.png +.. image:: https://raw.githubusercontent.com/OCA/account-reconcile/12.0/account_move_reconcile_helper/static/docs/journal_entries_2.png :alt: Reconciled lines view :scale: 50 % -Usage -===== +**Table of contents** -.. 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/10.0 +.. contents:: + :local: 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. +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 `_. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* Odoo Community Association: `Icon `_. +* ACSONE SA/NV Contributors ------------- +~~~~~~~~~~~~ * Benjamin Willig -Maintainer ----------- +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. .. 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 module is part of the `OCA/account-reconcile `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_move_reconcile_helper/__manifest__.py b/account_move_reconcile_helper/__manifest__.py index 48b6ca2f..9e8c8bfc 100644 --- a/account_move_reconcile_helper/__manifest__.py +++ b/account_move_reconcile_helper/__manifest__.py @@ -1,11 +1,10 @@ -# -*- coding: utf-8 -*- # Copyright 2017 ACSONE SA/NV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Account Move Reconcile Helper', 'summary': "Provides tools to facilitate reconciliation", - 'version': '10.0.1.0.0', + 'version': '12.0.1.0.0', 'license': 'AGPL-3', 'author': 'ACSONE SA/NV, Odoo Community Association (OCA)', 'website': 'https://github.com/OCA/account-reconcile', @@ -15,6 +14,4 @@ 'data': [ 'views/account_move_line.xml', ], - 'demo': [ - ], } diff --git a/account_move_reconcile_helper/models/account_move_line.py b/account_move_reconcile_helper/models/account_move_line.py index 3846c2da..2506515f 100644 --- a/account_move_reconcile_helper/models/account_move_line.py +++ b/account_move_reconcile_helper/models/account_move_line.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 ACSONE SA/NV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/account_move_reconcile_helper/readme/CONTRIBUTORS.rst b/account_move_reconcile_helper/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..eea6cac0 --- /dev/null +++ b/account_move_reconcile_helper/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Benjamin Willig diff --git a/account_move_reconcile_helper/readme/DESCRIPTION.rst b/account_move_reconcile_helper/readme/DESCRIPTION.rst new file mode 100644 index 00000000..90a4a8e1 --- /dev/null +++ b/account_move_reconcile_helper/readme/DESCRIPTION.rst @@ -0,0 +1,14 @@ + +Provides tools to facilitate reconciliation. + +* Display a button on Journal entries list to show reconciled lines. +* Added Balance field in Journal entries list (this feature + is provided by account_balance_line). + +.. image:: ./static/docs/journal_entries_1.png + :alt: Journal entries + :scale: 50 % + +.. image:: ./static/docs/journal_entries_2.png + :alt: Reconciled lines view + :scale: 50 % diff --git a/account_move_reconcile_helper/static/description/index.html b/account_move_reconcile_helper/static/description/index.html new file mode 100644 index 00000000..0817f83b --- /dev/null +++ b/account_move_reconcile_helper/static/description/index.html @@ -0,0 +1,426 @@ + + + + + + +Account Move Reconcile Helper + + + +
+

Account Move Reconcile Helper

+ + +

Beta License: AGPL-3 OCA/account-reconcile Translate me on Weblate Try me on Runbot

+

Provides tools to facilitate reconciliation.

+
    +
  • Display a button on Journal entries list to show reconciled lines.
  • +
  • Added Balance field in Journal entries list (this feature +is provided by account_balance_line).
  • +
+Journal entries +Reconciled lines view +

Table of contents

+ +
+

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.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • ACSONE SA/NV
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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.

+

This module is part of the OCA/account-reconcile project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/account_move_reconcile_helper/tests/test_account_move_reconcile_helper.py b/account_move_reconcile_helper/tests/test_account_move_reconcile_helper.py index 5c692b22..32f6c644 100644 --- a/account_move_reconcile_helper/tests/test_account_move_reconcile_helper.py +++ b/account_move_reconcile_helper/tests/test_account_move_reconcile_helper.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 ACSONE SA/NV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/account_move_reconcile_helper/views/account_move_line.xml b/account_move_reconcile_helper/views/account_move_line.xml index bd274d46..829960f2 100644 --- a/account_move_reconcile_helper/views/account_move_line.xml +++ b/account_move_reconcile_helper/views/account_move_line.xml @@ -4,7 +4,7 @@ - + account.move.line.tree (in account_move_reconcile_helper) account.move.line