merged from trunk
[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': 'Human Resources Expenses Tracking',
25     'version': '1.0',
26     'category': 'Generic Modules/Human Resources',
27     'description': """
28     This module aims to manage employee's expenses.
29
30     The whole workflow is implemented:
31     * Draft expense
32     * Confirmation of the sheet by the employee
33     * Validation by his manager
34     * Validation by the accountant and invoice creation
35     * Payment of the invoice to the employee
36
37     This module also uses the analytic accounting and is compatible with
38     the invoice on timesheet module so that you will be able to automatically
39     re-invoice your customer's expenses if your work by project.
40     """,
41     'author': 'OpenERP SA',
42     'website': 'http://www.openerp.com',
43     'depends': ['hr', 'account'],
44     'init_xml': [],
45     'update_xml': [
46         'security/ir.model.access.csv',
47         'hr_expense_sequence.xml',
48         'hr_expense_workflow.xml',
49         'hr_expense_view.xml',
50         'hr_expense_report.xml',
51         'process/hr_expense_process.xml',
52         'security/ir_rule.xml',
53         'report/hr_expense_report_view.xml',
54         'board_hr_expense_view.xml',
55         'board_hr_expense_manager_view.xml'
56     ],
57     'demo_xml': [
58         'hr_expense_demo.xml',
59         ],
60     'test': ['test/test_hr_expense.yml',
61              'test/hr_expense_report.yml',
62              ],
63     'installable': True,
64     'active': False,
65     'certificate': '0062479841789',
66 }
67 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: