[IMP] sale order line invisible type
[odoo/odoo.git] / addons / hr_expense / __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': 'Expenses Management',
25     'version': '1.0',
26     'category': 'Human Resources',
27     'sequence': 30,
28     'summary': 'Expenses Validation, Invoicing',
29     'description': """
30 This module aims to manage employee's expenses.
31 ===============================================
32
33 The whole workflow is implemented:
34 ----------------------------------
35     * Draft expense
36     * Confirmation of the sheet by the employee
37     * Validation by his manager
38     * Validation by the accountant and receipt creation
39
40 This module also uses the analytic accounting and is compatible with
41 the invoice on timesheet module so that you will be able to automatically
42 re-invoice your customer's expenses if your work by project.
43     """,
44     'author': 'OpenERP SA',
45     'website': 'http://www.openerp.com',
46     'images': ['images/hr_expenses_analysis.jpeg', 'images/hr_expenses.jpeg'],
47     'depends': ['hr', 'account_voucher'],
48     'data': [
49         'security/ir.model.access.csv',
50         'hr_expense_data.xml',
51         'hr_expense_sequence.xml',
52         'hr_expense_workflow.xml',
53         'hr_expense_view.xml',
54         'hr_expense_report.xml',
55         'process/hr_expense_process.xml',
56         'security/ir_rule.xml',
57         'report/hr_expense_report_view.xml',
58         'board_hr_expense_view.xml',
59         'hr_expense_installer_view.xml',
60     ],
61     'demo': ['hr_expense_demo.xml'],
62     'test': [
63         'test/expense_demo.yml',
64         'test/expense_process.yml',
65     ],
66     'installable': True,
67     'auto_install': False,
68     'certificate': '0062479841789',
69     'application': True,
70 }
71 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: