Files
account-financial-tools/account_reversal/__manifest__.py
Cédric Pigeon (ACSONE) a605243de3 [10.0][MIG] account_reversal migration (#445)
* OCA Transbot updated translations from Transifex
* Add option to reconcile the reversal move with the original move (#387)
* [IMP] account_reversal: Several improvements
* Default date for reverse move is not start_date of the period following the period of the original move (and not the period following today's period)
* Return form view of account.move if only 1 move is reversed
* Add option to reconcile with the reversal entry.
* [10.0][MIG] account_reversal migration
* [CHG] skid Odoo method to allow better performance on huge volume
2017-05-05 17:57:47 -05:00

29 lines
873 B
Python

# -*- coding: utf-8 -*-
# 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",
"summary": "Wizard for creating a reversal account move",
"version": "10.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": [
"wizard/account_move_reverse_view.xml",
"views/account_move_view.xml",
],
}