[FIX] sum() in query was returning null,corrected
[odoo/odoo.git] / addons / account_analytic_analysis / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     'name': 'report_account_analytic',
26     'version': '1.0',
27     'category': 'Generic Modules/Accounting',
28     'description': """Modify account analytic view to show
29 important data for project manager of services companies.
30 Add menu to show relevant information for each manager.""",
31     "version" : "1.1",
32     "author" : "Camptocamp",
33     "category" : "Generic Modules/Accounting",
34     "module": "",
35     "website": "http://www.camptocamp.com/",
36     "depends" : ["account","hr_timesheet","hr_timesheet_invoice","project"],
37     "init_xml" : [],
38     "update_xml" : [
39         "security/ir.model.access.csv",
40         "account_analytic_analysis_view.xml",
41         "account_analytic_analysis_menu.xml",
42     ],
43     'demo_xml': [],
44     'installable': True,
45     'active': False,
46     'certificate': '0042927202589',
47 }
48 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: