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