[IMP] hr*: rename model of config wizard to hr.config.settings
[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     'complexity': "easy",
29     'description': """
30 This module aims to manage employee's expenses.
31 ===============================================
32
33 The whole workflow is implemented:
34     * Draft expense
35     * Confirmation of the sheet by the employee
36     * Validation by his manager
37     * Validation by the accountant and invoice creation
38     * Payment of the invoice to the employee
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'],
48     'init_xml': [],
49     'update_xml': [
50         'security/ir.model.access.csv',
51         'hr_expense_data.xml',
52         'hr_expense_sequence.xml',
53         'hr_expense_workflow.xml',
54         'hr_expense_view.xml',
55         'hr_expense_report.xml',
56         'process/hr_expense_process.xml',
57         'security/ir_rule.xml',
58         'report/hr_expense_report_view.xml',
59         'board_hr_expense_view.xml',
60         'board_hr_expense_manager_view.xml',
61         'hr_expense_installer_view.xml',
62     ],
63     'demo_xml': [
64         'hr_expense_demo.xml',
65         ],
66     'test': [
67              'test/expense_demo.yml',
68              'test/expense_process.yml',
69              ],
70     'installable': True,
71     'auto_install': False,
72     'certificate': '0062479841789',
73     'application': True,
74 }
75 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: