[IMP] Tour cleanup
[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 Timesheets',
25     'version': '1.0',
26     'category': 'Sales Management',
27     'description': """
28 Generate your Invoices from Expenses, Timesheet Entries.
29 ========================================================
30
31 Module to generate invoices based on costs (human resources, expenses, ...).
32
33 You can define price lists in analytic account, make some theoretical revenue
34 reports.""",
35     'author': 'OpenERP SA',
36     'website': 'http://www.openerp.com',
37     'images': ['images/hr_bill_task_work.jpeg','images/hr_type_of_invoicing.jpeg'],
38     'depends': ['account', 'hr_timesheet'],
39     'data': [
40         'security/ir.model.access.csv',
41         'hr_timesheet_invoice_data.xml',
42         'hr_timesheet_invoice_view.xml',
43         'hr_timesheet_invoice_wizard.xml',
44         'hr_timesheet_invoice_report.xml',
45         'report/report_analytic_view.xml',
46         'report/hr_timesheet_invoice_report_view.xml',
47         'wizard/hr_timesheet_analytic_profit_view.xml',
48         'wizard/hr_timesheet_invoice_create_view.xml',
49         'wizard/hr_timesheet_invoice_create_final_view.xml',
50     ],
51     'demo': ['hr_timesheet_invoice_demo.xml'],
52     'test': ['test/test_hr_timesheet_invoice.yml',
53              'test/test_hr_timesheet_invoice_no_prod_tax.yml',
54              'test/hr_timesheet_invoice_report.yml',
55     ],
56     'installable': True,
57     'auto_install': False,
58 }
59 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: