diff --git a/account_chart_update/README.rst b/account_chart_update/README.rst new file mode 100644 index 000000000..622e24eaf --- /dev/null +++ b/account_chart_update/README.rst @@ -0,0 +1,55 @@ +Adds a wizard to update a company account chart from a chart template. +====================================================================== + +This is a pretty useful tool to update Odoo installations after tax reforms +on the official charts of accounts, or to apply fixes performed on the chart +template. + +The wizard: + +* Allows the user to compare a chart and a template showing differences + on accounts, taxes, tax codes and fiscal positions. +* It may create the new account, taxes, tax codes and fiscal positions detected + on the template. +* It can also update (overwrite) the accounts, taxes, tax codes and fiscal + positions that got modified on the template. + +Usage +===== + +The wizard, accesible from *Accounting > Configuration > Accounts > Update +chart of accounts*, lets the user select what kind of objects must +be checked/updated, and whether old records must be checked for changes and +updates. + +It will display all the objects to be created / updated with some information +about the detected differences, and allow the user to exclude records +individually. + +Credits +======= + +Contributors +------------ + +* Jordi Esteve +* Borja López Soilán +* Pedro M. Baeza +* Joaquín Gutierrez +* invitu +* Stéphane Bidoul + +Maintainer +---------- + +.. 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. + +To contribute to this module, please visit http://odoo-community.org. diff --git a/account_chart_update/__openerp__.py b/account_chart_update/__openerp__.py index 37f694523..dbb6eb198 100644 --- a/account_chart_update/__openerp__.py +++ b/account_chart_update/__openerp__.py @@ -6,7 +6,6 @@ # Copyright (c) 2010 Pexego Sistemas Informáticos S.L.(http://www.pexego.es) # Copyright (c) 2013 Joaquin Gutierrez (http://www.gutierrezweb.es) # Pedro Manuel Baeza -# $Id$ # 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 @@ -27,8 +26,12 @@ { 'name': "Detect changes and update the Account Chart from a template", 'version': "1.2", - 'author': "Zikzakmedia SL,Odoo Community Association (OCA)", - 'website': "www.zikzakmedia.com", + 'author': "Zikzakmedia SL, " + "Pexego, " + "Serv. Tecnol. Avanzados - Pedro M. Baeza, " + "ACSONE A/V, " + "Odoo Community Association (OCA)", + 'website': "http://odoo-community.org", 'depends': ["account"], 'category': "Generic Modules/Accounting", 'contributors': [ @@ -37,31 +40,6 @@ 'invitu', 'Stéphane Bidoul', ], - 'description': """ -Adds a wizard to update a company account chart from a chart template. -====================================================================== - -This is a pretty useful tool to update OpenERP installations after tax reforms -on the official charts of accounts, or to apply fixes performed on the chart -template. - -The wizard: - -- Allows the user to compare a chart and a template showing differences - on accounts, taxes, tax codes and fiscal positions. -- It may create the new account, taxes, tax codes and fiscal positions detected - on the template. -- It can also update (overwrite) the accounts, taxes, tax codes and fiscal - positions that got modified on the template. - -The wizard lets the user select what kind of objects must be checked/updated, -and whether old records must be checked for changes and updates. -It will display all the accounts to be created / updated with some information -about the detected differences, and allow the user to exclude records -individually. - -Any problem found while updating will be shown on the last step. -""", 'license': "AGPL-3", "depends": [ "account",