mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
With this option, you can select which fields do you want to compare for updating. Use case: you have specific accounts in taxes, and you don't want to lose them, but you want to update their groups through the wizard. Before this, the update was all or nothing. Now, you have total control!
26 lines
893 B
Python
26 lines
893 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
|
# Copyright 2016 Jacques-Etienne Baudoux <je@bcim.be>
|
|
# Copyright 2016 Sylvain Van Hoof <sylvain@okia.be>
|
|
# Copyright 2015-2018 Tecnativa - Pedro M. Baeza
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': "Detect changes and update the Account Chart from a template",
|
|
"summary": "Wizard to update a company's account chart from a template",
|
|
'version': "10.0.2.1.0",
|
|
'author': "Tecnativa, "
|
|
"BCIM, "
|
|
"Okia, "
|
|
"Odoo Community Association (OCA)",
|
|
'website': "http://odoo-community.org",
|
|
'depends': ["account"],
|
|
'development_status': 'Mature',
|
|
'category': "Accounting",
|
|
'license': "AGPL-3",
|
|
"data": [
|
|
'wizard/wizard_chart_update_view.xml',
|
|
'views/account_config_settings_view.xml',
|
|
],
|
|
}
|