diff --git a/account_reversal/README.rst b/account_reversal/README.rst new file mode 100644 index 000000000..247a91af5 --- /dev/null +++ b/account_reversal/README.rst @@ -0,0 +1,19 @@ +Account Reversal +================ + +This module adds an action "Reversal" on account moves, +to allow the accountant to create reversal account moves in 2 clicks. +Also add on account entries: + + * a checkbox and filter "to be reversed" + * a link between an entry and its reversal entry + +Module originally developped by Alexis de Lattre +during the Akretion-Camptocamp code sprint of June 2011. + +Contributors +============ + + * Alexis de Lattre (Akretion) + * Guewen Baconnier (Camptocamp) + * Nicolas Bessi (Camptocamp) diff --git a/account_reversal/__openerp__.py b/account_reversal/__openerp__.py index 8736a1ec2..7348cdec1 100644 --- a/account_reversal/__openerp__.py +++ b/account_reversal/__openerp__.py @@ -28,20 +28,6 @@ 'version': '1.0', 'category': 'Generic Modules/Accounting', 'license': 'AGPL-3', - 'description': """ -Account Reversal -================ - -This module adds an action "Reversal" on account moves, -to allow the accountant to create reversal account moves in 2 clicks. -Also add on account entries: - - a checkbox and filter "to be reversed" - - a link between an entry and its reversal entry - -Module originally developped by Alexis de Lattre -during the Akretion-Camptocamp code sprint of June 2011. - -""", 'author': 'Akretion,Camptocamp', 'website': 'http://www.akretion.com/', 'depends': ['account'],