[MERGE] merged with trunk-development-branch
[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     'complexity': "easy",
28     'description': """
29 This module aims to manage employee's expenses.
30 ===============================================
31
32 The whole workflow is implemented:
33     * Draft expense
34     * Confirmation of the sheet by the employee
35     * Validation by his manager
36     * Validation by the accountant and invoice creation
37     * Payment of the invoice to the employee
38
39 This module also uses the analytic accounting and is compatible with
40 the invoice on timesheet module so that you will be able to automatically
41 re-invoice your customer's expenses if your work by project.
42     """,
43     'author': 'OpenERP SA',
44     'website': 'http://www.openerp.com',
45     'images': ['images/hr_expenses_analysis.jpeg', 'images/hr_expenses.jpeg'],
46     'depends': ['hr', 'account'],
47     'init_xml': [],
48     'update_xml': [
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         'board_hr_expense_manager_view.xml',
60         'hr_expense_installer_view.xml',
61     ],
62     'demo_xml': [
63         'hr_expense_demo.xml',
64         ],
65     'test': [
66              'test/expense_demo.yml',
67              'test/expense_process.yml',
68              ],
69     'installable': True,
70     'active': False,
71     'certificate': '0062479841789',
72     'application': True,
73 }
74 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: