diff --git a/account_banking_mandate/README.rst b/account_banking_mandate/README.rst new file mode 100644 index 000000000..5cf37dd61 --- /dev/null +++ b/account_banking_mandate/README.rst @@ -0,0 +1,73 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License: AGPL-3 + +Account Banking Mandate +======================= + +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. + +Installation +============ + +This module depends on : +* account_payment + +This module is part of the OCA/bank-payment suite. + +Configuration +============= + +TODO + +Usage +===== + +To use this module, see menu "Accounting > payment > SEPA direct debit mandates" + +For further information, please visit: + + * https://www.odoo.com/forum/help-1 + +Known issues / Roadmap +====================== + + * no known issues + +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 +`here `_. + +Credits +======= + +Contributors +------------ + +* Alexis de Lattre +* Pedro M. Baeza +* Alexandre Fayolle +* Stéphane Bidoul + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://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 http://odoo-community.org. diff --git a/account_banking_mandate/__openerp__.py b/account_banking_mandate/__openerp__.py index ff310a76f..7436ae930 100644 --- a/account_banking_mandate/__openerp__.py +++ b/account_banking_mandate/__openerp__.py @@ -45,16 +45,5 @@ ], 'demo': [], 'test': ['test/banking_mandate.yml'], - 'description': ''' - 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. - ''', 'installable': True, }