~unifield-team/unifield-wm/us-826

232.5.8 by Olivier DOSSMANN
UF-359 [ADD] Account override module integration
1
# -*- coding: utf-8 -*-
2
##############################################################################
3
#
4
#    OpenERP, Open Source Management Solution
5
#    Copyright (C) 2011 MSF, TeMPO Consulting
6
#
7
#    This program is free software: you can redistribute it and/or modify
8
#    it under the terms of the GNU Affero General Public License as
9
#    published by the Free Software Foundation, either version 3 of the
10
#    License, or (at your option) any later version.
11
#
12
#    This program is distributed in the hope that it will be useful,
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
#    GNU Affero General Public License for more details.
16
#
17
#    You should have received a copy of the GNU Affero General Public License
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
#
20
##############################################################################
21
22
{
23
    "name" : "Account override",
24
    "version" : "1.0",
617 by jf
author in __openerp__.py
25
    "author" : "MSF, TeMPO Consulting",
232.5.8 by Olivier DOSSMANN
UF-359 [ADD] Account override module integration
26
    "description" : """
27
    Add hook to account class, workflow, etc.
28
    """,
29
    "website": "http://unifield.msf.org",
633.7.12 by Olivier DOSSMANN
UF-834 [ADD] Merge last trunk version lp:~unifield-team/unifield-wm/trunk
30
    "depends" : ["account", "analytic", "account_tools", "msf_audittrail"],
232.5.8 by Olivier DOSSMANN
UF-359 [ADD] Account override module integration
31
    "category" : "Generic Modules/Accounting",
1287.14.2 by chloups208
utp-171 data added
32
    "init_xml" : ["data.xml",],
232.5.8 by Olivier DOSSMANN
UF-359 [ADD] Account override module integration
33
    "demo_xml" : [],
34
    "update_xml" : [
35
        'account_invoice_workflow.xml',
633.7.3 by Olivier DOSSMANN
UF-834 [ADD] Add invoice line follow-up in audittrail
36
        'account_view.xml',
667.8.1 by Olivier DOSSMANN
UF-911 [ADD] Delete some fields from Invoice list view
37
        'account_invoice_view.xml',
631.3.7 by Matthieu Dietrich
UF-828: [IMP] last report: open invoices
38
        'account_invoice_report.xml',
647.1.10 by Olivier DOSSMANN
UF-910 [ADD] Parse account_mcdb, account_journal, account_override and analytic_distribution to reorganize Analytic Journal Items columns
39
        'account_analytic_line_view.xml',
1131.1.1 by Matthieu Dietrich
UF-1129: [IMP] modified sequence numbers for move, move lines and reconciliations
40
        'account_sequence.xml',
232.5.8 by Olivier DOSSMANN
UF-359 [ADD] Account override module integration
41
    ],
42
    'test': [],
43
    'installable': True,
44
    'active': False,
45
}