[MERGE] merged the xrg branch containing some bugfixes
[odoo/odoo.git] / addons / hr_timesheet_invoice / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
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 {
24     'name': 'Invoice on analytic lines',
25     'version': '1.0',
26     'category': 'Generic Modules/Accounting',
27     'description': """
28 Module to generate invoices based on costs (human resources, expenses, ...).
29 You can define price lists in analytic account, make some theoretical revenue
30 reports, eso.""",
31     'author': 'OpenERP SA',
32     'website': 'http://www.openerp.com',
33     'depends': ['account', 'hr_timesheet'],
34     'data': [
35         'security/ir.model.access.csv',
36         'hr_timesheet_invoice_data.xml',
37         'hr_timesheet_invoice_view.xml',
38         'hr_timesheet_invoice_wizard.xml',
39         'hr_timesheet_invoice_report.xml',
40         'report/report_analytic_view.xml',
41         'report/hr_timesheet_invoice_report_view.xml',
42         'wizard/hr_timesheet_invoice_analytic_cost_ledger_view.xml',
43         'wizard/hr_timesheet_analytic_profit_view.xml',
44         'wizard/hr_timesheet_invoice_create_view.xml',
45         'wizard/hr_timesheet_invoice_create_final_view.xml',
46         'board_hr_timesheet_invoice.xml',
47     ],
48     'demo': [
49         'hr_timesheet_invoice_demo.xml',
50     ],
51     'test': ['test/test_hr_timesheet_invoice.yml',
52              'test/hr_timesheet_invoice_report.yml',
53              ],
54     'installable': True,
55     'active': False,
56     'certificate': '0056091842381',
57 }
58 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: