~camptocamp/account-financial-tools/credit_control_report_improvement_vre

« back to all changes in this revision

Viewing changes to account_chart_update/__openerp__.py

[MRG]: Port account_char_update to version 7.0
[FIX]: Changed types to orm.Model, orm.TransientModel and orm.AbstractModel.
[FIX]: Fix deletion method for some fields of objects.
[FIX]: Contributions have been written in the standard format of the community.
[FIX]: Changes in the form to work as a real wizard.
[FIX]: Remove 'init_xml' keys, because it's no longer needed in v7.
[FIX]: Rename 'demo_xml' key to the new standard 'demo'.
[FIX]: Change imports calls.
[FIX]: Remove __author__ variables in files, because authors are put on manifest file (__openerp__.py).
[FIX]: Update view definitions to version 7.0
[FIX]: Rename variables to OpenERP standard.
[FIX]: Increased compatibility with standard PEP8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (c) 2010 Zikzakmedia S.L. (http://www.zikzakmedia.com)
 
6
#    Copyright (c) 2010 Pexego Sistemas Informáticos S.L. (http://www.pexego.es)
 
7
#    Copyright (c) 2013 Joaquin Gutierrez (http://www.gutierrezweb.es)
 
8
#                       Pedro Manuel Baeza <pedro.baeza@serviciosbaeza.com>
 
9
#    $Id$
 
10
#    This program is free software: you can redistribute it and/or modify
 
11
#    it under the terms of the GNU Affero General Public License as published
 
12
#    by the Free Software Foundation, either version 3 of the License, or
 
13
#    (at your option) any later version.
 
14
#
 
15
#    This program is distributed in the hope that it will be useful,
 
16
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
#    GNU Affero General Public License for more details.
 
19
#
 
20
#    You should have received a copy of the GNU Affero General Public License
 
21
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
22
#
 
23
#    2013/09/08 - Joaquín Gutierrez: Adaptación a la versión
 
24
#
 
25
##############################################################################
 
26
 
 
27
{
 
28
    'name': "Detect changes and update the Account Chart from a template",
 
29
    'version': "1.0",
 
30
    'author': "Zikzakmedia SL",
 
31
    'website': "www.zikzakmedia.com",
 
32
    'depends': ["account"],
 
33
    'category': "Generic Modules/Accounting",
 
34
    'contributors': ['Joaquin Gutierrez', 'Pedro M. Baeza'],
 
35
    'description': """
 
36
Adds a wizard to update a company account chart from a chart template.
 
37
======================================================================
 
38
 
 
39
This is a pretty useful tool to update OpenERP instalations after tax reforms
 
40
on the oficial charts of accounts, or to apply fixes performed on the chart
 
41
template.
 
42
 
 
43
The wizard:
 
44
- Allows the user to compare a chart and a template showing differences
 
45
    on accounts, taxes, tax codes and fiscal positions.
 
46
- It may create the new account, taxes, tax codes and fiscal positions detected
 
47
    on the template.
 
48
- It can also update (overwrite) the accounts, taxes, tax codes and fiscal
 
49
    positions that got modified on the template.
 
50
 
 
51
The wizard lets the user select what kind of objects must be checked/updated,
 
52
and whether old records must be checked for changes and updated.
 
53
It will display all the accounts to be created / updated with some information
 
54
about the detected differences, and allow the user to exclude records
 
55
individually.
 
56
Any problem found while updating will be shown on the last step.
 
57
""",
 
58
    'license': "AGPL-3",
 
59
    "depends": [
 
60
        "account",
 
61
        "base",
 
62
    ],
 
63
    "demo" : [],
 
64
    "data": [
 
65
        'wizard/wizard_chart_update_view.xml',
 
66
    ],
 
67
    "active": False,
 
68
    "installable": True
 
69
}