From 9bdc07aa3c7c7da29370c8e0608930fb3dba1dda Mon Sep 17 00:00:00 2001 From: Sergio Teruel Date: Mon, 5 Nov 2018 19:08:52 +0100 Subject: [PATCH] [12.0][mig] account_banking_mandate: Migrate to V12.0 --- account_banking_mandate/README.rst | 74 ++- account_banking_mandate/__manifest__.py | 2 +- .../data/mandate_reference_sequence.xml | 2 - .../readme/CONTRIBUTORS.rst | 7 + .../readme/DESCRIPTION.rst | 8 + account_banking_mandate/readme/INSTALL.rst | 4 + account_banking_mandate/readme/USAGE.rst | 1 + .../static/description/index.html | 445 ++++++++++++++++++ .../views/res_partner_bank_view.xml | 4 +- 9 files changed, 519 insertions(+), 28 deletions(-) create mode 100644 account_banking_mandate/readme/CONTRIBUTORS.rst create mode 100644 account_banking_mandate/readme/DESCRIPTION.rst create mode 100644 account_banking_mandate/readme/INSTALL.rst create mode 100644 account_banking_mandate/readme/USAGE.rst create mode 100644 account_banking_mandate/static/description/index.html diff --git a/account_banking_mandate/README.rst b/account_banking_mandate/README.rst index 715edacb2..9d1cd68db 100644 --- a/account_banking_mandate/README.rst +++ b/account_banking_mandate/README.rst @@ -1,10 +1,30 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 - ======================= Account Banking Mandate ======================= +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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%2Fbank--payment-lightgray.png?logo=github + :target: https://github.com/OCA/bank-payment/tree/12.0/account_banking_mandate + :alt: OCA/bank-payment +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/bank-payment-12-0/bank-payment-12-0-account_banking_mandate + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/97/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + This module adds a generic model for banking mandates. These mandates can be specialized to fit any banking mandates (such as sepa or lsv). @@ -14,6 +34,11 @@ specific operation (such as direct debit). You can setup mandates from the accounting menu or directly from a bank account. +**Table of contents** + +.. contents:: + :local: + Installation ============ @@ -22,34 +47,33 @@ This module depends on : This module is part of the OCA/bank-payment suite. -Configuration -============= - -TODO - Usage ===== To use this module, see menu "Invoicing/Accounting > Payments > Debit Orders" -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/173/11.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 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 ======= +Authors +~~~~~~~ + +* Compassion CH +* Tecnativa +* Akretion + Contributors ------------- +~~~~~~~~~~~~ * Alexis de Lattre * Pedro M. Baeza @@ -59,15 +83,19 @@ Contributors * Cédric Pigeon * Carlos Dauden -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. -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/bank-payment `_ project on GitHub. -To contribute to this module, please visit https://odoo-community.org. +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_banking_mandate/__manifest__.py b/account_banking_mandate/__manifest__.py index 1bc549865..64dd48db1 100644 --- a/account_banking_mandate/__manifest__.py +++ b/account_banking_mandate/__manifest__.py @@ -7,7 +7,7 @@ { 'name': 'Account Banking Mandate', 'summary': 'Banking mandates', - 'version': '11.0.1.2.2', + 'version': '12.0.1.0.0', 'license': 'AGPL-3', 'author': "Compassion CH, " "Tecnativa, " diff --git a/account_banking_mandate/data/mandate_reference_sequence.xml b/account_banking_mandate/data/mandate_reference_sequence.xml index 0b78fddfb..cb6e2851f 100644 --- a/account_banking_mandate/data/mandate_reference_sequence.xml +++ b/account_banking_mandate/data/mandate_reference_sequence.xml @@ -1,7 +1,6 @@ - DD Mandate Reference account.banking.mandate @@ -9,5 +8,4 @@ - diff --git a/account_banking_mandate/readme/CONTRIBUTORS.rst b/account_banking_mandate/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..deee727a0 --- /dev/null +++ b/account_banking_mandate/readme/CONTRIBUTORS.rst @@ -0,0 +1,7 @@ +* Alexis de Lattre +* Pedro M. Baeza +* Alexandre Fayolle +* Stéphane Bidoul +* Sergio Teruel +* Cédric Pigeon +* Carlos Dauden diff --git a/account_banking_mandate/readme/DESCRIPTION.rst b/account_banking_mandate/readme/DESCRIPTION.rst new file mode 100644 index 000000000..6cb4565cc --- /dev/null +++ b/account_banking_mandate/readme/DESCRIPTION.rst @@ -0,0 +1,8 @@ +This module adds a generic model for banking mandates. +These mandates can be specialized to fit any banking mandates (such as sepa or lsv). + +A banking mandate is attached to a bank account and represents an +authorization that the bank account owner gives to a company for a +specific operation (such as direct debit). +You can setup mandates from the accounting menu or directly from a bank +account. diff --git a/account_banking_mandate/readme/INSTALL.rst b/account_banking_mandate/readme/INSTALL.rst new file mode 100644 index 000000000..213055450 --- /dev/null +++ b/account_banking_mandate/readme/INSTALL.rst @@ -0,0 +1,4 @@ +This module depends on : +* account_payment + +This module is part of the OCA/bank-payment suite. diff --git a/account_banking_mandate/readme/USAGE.rst b/account_banking_mandate/readme/USAGE.rst new file mode 100644 index 000000000..5fca9a13a --- /dev/null +++ b/account_banking_mandate/readme/USAGE.rst @@ -0,0 +1 @@ +To use this module, see menu "Invoicing/Accounting > Payments > Debit Orders" diff --git a/account_banking_mandate/static/description/index.html b/account_banking_mandate/static/description/index.html new file mode 100644 index 000000000..e1745f33e --- /dev/null +++ b/account_banking_mandate/static/description/index.html @@ -0,0 +1,445 @@ + + + + + + +Account Banking Mandate + + + +
+

Account Banking Mandate

+ + +

Beta License: AGPL-3 OCA/bank-payment Translate me on Weblate Try me on Runbot

+

This module adds a generic model for banking mandates. +These mandates can be specialized to fit any banking mandates (such as sepa or lsv).

+

A banking mandate is attached to a bank account and represents an +authorization that the bank account owner gives to a company for a +specific operation (such as direct debit). +You can setup mandates from the accounting menu or directly from a bank +account.

+

Table of contents

+ +
+

Installation

+

This module depends on : +* account_payment

+

This module is part of the OCA/bank-payment suite.

+
+
+

Usage

+

To use this module, see menu “Invoicing/Accounting > Payments > Debit Orders”

+
+
+

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

+
    +
  • Compassion CH
  • +
  • Tecnativa
  • +
  • Akretion
  • +
+
+
+

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/bank-payment project on GitHub.

+

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

+
+
+
+ + diff --git a/account_banking_mandate/views/res_partner_bank_view.xml b/account_banking_mandate/views/res_partner_bank_view.xml index 47c3789e4..2a7bf9e7a 100644 --- a/account_banking_mandate/views/res_partner_bank_view.xml +++ b/account_banking_mandate/views/res_partner_bank_view.xml @@ -11,11 +11,11 @@ res.partner.bank - + - +