Skip to content

Commit

Permalink
[MIG] account_reversal
Browse files Browse the repository at this point in the history
  • Loading branch information
antespi committed Sep 30, 2016
1 parent e47ff43 commit 950a9e8
Show file tree
Hide file tree
Showing 13 changed files with 402 additions and 570 deletions.
53 changes: 44 additions & 9 deletions account_reversal/README.rst
Original file line number Diff line number Diff line change
@@ -1,23 +1,58 @@
.. 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 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
* a checkbox and filter "to be reversed"
* a link between an entry and its reversal entry

Usage
=====

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/92/9.0


Credits
=======

Module originally developped by Alexis de Lattre <alexis.delattre@akretion.com>
during the Akretion-Camptocamp code sprint of June 2011.

Images
------

* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.

Contributors
============
------------

* Alexis de Lattre (Akretion)
* Guewen Baconnier (Camptocamp)
* Nicolas Bessi (Camptocamp)
* Torvald Bringsvor (Bringsvor Consulting)
* Sandy Carter (Savoir-faire Linux)
* Stéphane Bidoul (ACSONE)
* Antonio Espinosa (Tecnativa)

Maintainer
----------

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

This module is maintained by the OCA.

* Alexis de Lattre (Akretion)
* Guewen Baconnier (Camptocamp)
* Nicolas Bessi (Camptocamp)
* Torvald Bringsvor (Bringsvor Consulting)
* Sandy Carter (Savoir-faire Linux)
* Stéphane Bidoul (ACSONE)
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.
23 changes: 2 additions & 21 deletions account_reversal/__init__.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,5 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Account reversal module for OpenERP
# Copyright (C) 2011 Akretion (http://www.akretion.com). All Rights Reserved
# @author Alexis de Lattre <alexis.delattre@akretion.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import account_reversal
from . import models
from . import wizard
60 changes: 24 additions & 36 deletions account_reversal/__openerp__.py
Original file line number Diff line number Diff line change
@@ -1,40 +1,28 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Account reversal module for OpenERP
# Copyright (C) 2011 Akretion (http://www.akretion.com). All Rights Reserved
# @author Alexis de Lattre <alexis.delattre@akretion.com>
# Copyright 2012-2013 Camptocamp SA
# @author Guewen Baconnier (Camptocamp)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

# Copyright 2011 Alexis de Lattre <alexis.delattre@akretion.com>
# Copyright 2012-2013 Guewen Baconnier (Camptocamp)
# Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': 'Account Reversal',
'version': '8.0.1.1.0',
'category': 'Generic Modules/Accounting',
'license': 'AGPL-3',
'author': "Akretion,Camptocamp,Odoo Community Association (OCA)",
'website': 'http://www.akretion.com/',
'depends': ['account'],
'data': [
'account_view.xml',
'wizard/account_move_reverse_view.xml'
],
'installable': False,
'active': False,
"name": "Account Reversal",
"summary": "Wizard for creating a reversal account move",
"version": "9.0.1.0.0",
"category": "Accounting & Finance",
"website": "https://odoo-community.org/",
"author": "Akretion,"
"Camptocamp,"
"ACSONE SA/NV,"
"Tecnativa,"
"Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"account"
],
"data": [
"views/account_move_view.xml",
"wizard/account_move_reverse_view.xml"
],
}
167 changes: 0 additions & 167 deletions account_reversal/account_reversal.py

This file was deleted.

62 changes: 0 additions & 62 deletions account_reversal/account_view.xml

This file was deleted.

4 changes: 4 additions & 0 deletions account_reversal/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import account_move
Loading

0 comments on commit 950a9e8

Please sign in to comment.